Introduce column separator items; change most of ChatView to use qreal
[quassel.git] / src / qtui / qtuistyle.h
index 82943b4..0f3d60a 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  *
@@ -29,8 +29,8 @@ class QtUiStyle : public UiStyle {
     QtUiStyle();
     virtual ~QtUiStyle();
 
-    virtual int sepTsSender() { return 10; }
-    virtual int sepSenderText() { return 10; }
+    virtual inline qreal firstColumnSeparator() const { return 10; }
+    virtual inline qreal secondColumnSeparator() const { return 10; }
 };
 
 #endif