aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/editor/scripteditor.cpp
diff options
context:
space:
mode:
authorGravatar Alexey Uzhva2007-04-16 12:56:50 +0000
committerGravatar Alexey Uzhva2007-04-16 12:56:50 +0000
commita3a3c4299ce53fdf134a379095a2e04ced1ff47c (patch)
treea95e342541cc1fba735ce01b97be1fa312ce8926 /src/modules/editor/scripteditor.cpp
parentsome cosmetic fixes and better internal api (diff)
downloadKVIrc-a3a3c4299ce53fdf134a379095a2e04ced1ff47c.tar.gz
KVIrc-a3a3c4299ce53fdf134a379095a2e04ced1ff47c.tar.bz2
KVIrc-a3a3c4299ce53fdf134a379095a2e04ced1ff47c.zip
fixes; more qt4; better qt4 makefiles
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@493 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/editor/scripteditor.cpp')
-rw-r--r--src/modules/editor/scripteditor.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/modules/editor/scripteditor.cpp b/src/modules/editor/scripteditor.cpp
index 748a56208..2e7ab0d3e 100644
--- a/src/modules/editor/scripteditor.cpp
+++ b/src/modules/editor/scripteditor.cpp
@@ -62,17 +62,17 @@ extern KviPtrList<KviScriptEditorImplementation> * g_pScriptEditorWindowList;
extern KviModule * g_pEditorModulePointer;
-static QColor g_clrBackground(0,0,0);
-static QColor g_clrNormalText(100,255,0);
+static QColor g_clrBackground(255,255,255);
+static QColor g_clrNormalText(0,0,0);
static QColor g_clrBracket(255,0,0);
static QColor g_clrComment(0,120,0);
-static QColor g_clrFunction(255,255,0);
-static QColor g_clrKeyword(120,120,150);
-static QColor g_clrVariable(200,200,200);
+static QColor g_clrFunction(0,17,255);
+static QColor g_clrKeyword(85,85,255);
+static QColor g_clrVariable(255,0,0);
static QColor g_clrPunctuation(180,180,0);
-static QColor g_clrFind(187,221,255);
+static QColor g_clrFind(0,0,0);
-static QFont g_fntNormal("Fixed",12);
+static QFont g_fntNormal("Courier New",8);
KviCompletionBox::KviCompletionBox(QWidget * parent = 0)
: KviTalListBox(parent)