X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtopia%2Fqtopiauistyle.cpp;h=5168ee48823a2de86f1fd7f1dc583fc83e466f0a;hp=2716b2298e66118938823a91df8912b43f0f86dd;hb=fbc4df88ae0bb5e4d9394922395ce2ba29d9108e;hpb=0ff076706c3d353ec9b098b1eca270195288774e diff --git a/src/qtopia/qtopiauistyle.cpp b/src/qtopia/qtopiauistyle.cpp index 2716b229..5168ee48 100644 --- a/src/qtopia/qtopiauistyle.cpp +++ b/src/qtopia/qtopiauistyle.cpp @@ -23,7 +23,7 @@ QtopiaUiStyle::QtopiaUiStyle() : UiStyle() { QTextCharFormat def; - def.setFont(QFont("Verdana",6)); + 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 +51,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;