aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/editor
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/editor')
-rw-r--r--src/modules/editor/ScriptEditorImplementation.cpp4
-rw-r--r--src/modules/editor/libkvieditor.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/editor/ScriptEditorImplementation.cpp b/src/modules/editor/ScriptEditorImplementation.cpp
index 0a13e5d71..d561225f1 100644
--- a/src/modules/editor/ScriptEditorImplementation.cpp
+++ b/src/modules/editor/ScriptEditorImplementation.cpp
@@ -859,7 +859,7 @@ void ScriptEditorImplementation::loadOptions()
g_pEditorModulePointer->getDefaultConfigFileName(szTmp);
KviConfigurationFile cfg(szTmp,KviConfigurationFile::Read);
- g_clrBackground = cfg.readColorEntry("Background",QColor(0,0,0));;
+ g_clrBackground = cfg.readColorEntry("Background",QColor(0,0,0));
g_clrNormalText = cfg.readColorEntry("NormalText",QColor(100,255,0));
g_clrBracket = cfg.readColorEntry("Bracket",QColor(255,0,0));
g_clrComment = cfg.readColorEntry("Comment",QColor(0,120,0));
@@ -905,7 +905,7 @@ void ScriptEditorImplementation::saveOptions()
g_pEditorModulePointer->getDefaultConfigFileName(szTmp);
KviConfigurationFile cfg(szTmp,KviConfigurationFile::Write);
- cfg.writeEntry("Background",g_clrBackground);;
+ cfg.writeEntry("Background",g_clrBackground);
cfg.writeEntry("NormalText",g_clrNormalText);
cfg.writeEntry("Bracket",g_clrBracket);
cfg.writeEntry("Comment",g_clrComment);
diff --git a/src/modules/editor/libkvieditor.cpp b/src/modules/editor/libkvieditor.cpp
index ff2366ef9..18deee47b 100644
--- a/src/modules/editor/libkvieditor.cpp
+++ b/src/modules/editor/libkvieditor.cpp
@@ -53,7 +53,7 @@ static bool editor_module_cleanup(KviModule *)
while(g_pScriptEditorWindowList->first())
{
- QObject * w = g_pScriptEditorWindowList->first()->parent();;
+ QObject * w = g_pScriptEditorWindowList->first()->parent();
while(w)
{
//qDebug("%s %s %i %s",__FILE__,__FUNCTION__,__LINE__,w->className());