diff options
| author | 2015-10-27 06:37:13 -0400 | |
|---|---|---|
| committer | 2015-10-27 07:26:20 -0400 | |
| commit | f79e175badd88b7ccf82c13b02400dd4797ce177 (patch) | |
| tree | 771184eaf124d6f3dea3c5721762d41b334c39c2 /src/modules/editor | |
| parent | Merge pull request #1694 from blindsighttf2/spellcheck (diff) | |
| download | KVIrc-f79e175badd88b7ccf82c13b02400dd4797ce177.tar.gz KVIrc-f79e175badd88b7ccf82c13b02400dd4797ce177.tar.bz2 KVIrc-f79e175badd88b7ccf82c13b02400dd4797ce177.zip | |
Clean up double semicolons
Diffstat (limited to 'src/modules/editor')
| -rw-r--r-- | src/modules/editor/ScriptEditorImplementation.cpp | 4 | ||||
| -rw-r--r-- | src/modules/editor/libkvieditor.cpp | 2 |
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()); |
