X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtopia%2Fqtopiauistyle.cpp;h=88dd9216a6b2bdcc22f4735036cce050d27564bd;hp=2716b2298e66118938823a91df8912b43f0f86dd;hb=45d9ea6ed5d64eec3ca351fdcf7610c7cff3529d;hpb=48979ba2c343ab50ae93a8bb1c355ce79115bd4f diff --git a/src/qtopia/qtopiauistyle.cpp b/src/qtopia/qtopiauistyle.cpp index 2716b229..88dd9216 100644 --- a/src/qtopia/qtopiauistyle.cpp +++ b/src/qtopia/qtopiauistyle.cpp @@ -5,7 +5,7 @@ * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -23,7 +23,8 @@ QtopiaUiStyle::QtopiaUiStyle() : UiStyle() { QTextCharFormat def; - def.setFont(QFont("Verdana",6)); + def.setForeground(QBrush("#000000")); + def.setFont(QFont("Verdana",5)); setFormat(None, def); // We need to just set our internal formats; everything else is done by the base class... @@ -51,15 +52,15 @@ QtopiaUiStyle::QtopiaUiStyle() : UiStyle() { setFormat(JoinMsg, join); QTextCharFormat part; - part.setForeground(QBrush("#cd5c5c")); + part.setForeground(QBrush("#ff0000")); setFormat(PartMsg, part); QTextCharFormat quit; - quit.setForeground(QBrush("#cd5c5c")); + quit.setForeground(QBrush("#ff0000")); setFormat(QuitMsg, quit); QTextCharFormat kick; - kick.setForeground(QBrush("#cd5c5c")); + kick.setForeground(QBrush("#ff0000")); setFormat(KickMsg, kick); QTextCharFormat nren;