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/ScriptEditorImplementation.cpp | |
| 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/ScriptEditorImplementation.cpp')
| -rw-r--r-- | src/modules/editor/ScriptEditorImplementation.cpp | 4 |
1 files changed, 2 insertions, 2 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); |
