Store highlight color in QtUiStyle (hardcoded for now)
[quassel.git] / src / qtui / qtuistyle.cpp
index c96078e..af47119 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-07 by the Quassel IRC Team                         *
+ *   Copyright (C) 2005-08 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -20,7 +20,7 @@
 
 #include "qtuistyle.h"
 
-QtUiStyle::QtUiStyle() : UiStyle("QtUiStyle") {
+QtUiStyle::QtUiStyle() : UiStyle("QtUiStyleNew") {  // FIXME QtUiStyleNew naming
   // We need to just set our internal formats; everything else is done by the base class...
 
   // Internal message formats
@@ -102,7 +102,7 @@ QtUiStyle::QtUiStyle() : UiStyle("QtUiStyle") {
   url.setAnchor(true);
   setFormat(Url, url, Settings::Default);
 
-
+  _highlightColor = QColor(Qt::red);
 }
 
 QtUiStyle::~QtUiStyle() {}