Fix issues with single and double clicks in ChatView
[quassel.git] / src / qtui / chatlinemodel.h
index 0fb9226..4f64efe 100644 (file)
@@ -36,6 +36,7 @@ public:
   /// Used to store information about words to be used for wrapping
   struct Word {
     quint16 start;
+    qreal endX;
     qreal width;
     qreal trailing;
   };
@@ -49,7 +50,7 @@ protected:
 QDataStream &operator<<(QDataStream &out, const ChatLineModel::WrapList);
 QDataStream &operator>>(QDataStream &in, ChatLineModel::WrapList &);
 
-Q_DECLARE_METATYPE(ChatLineModel::WrapList);
+Q_DECLARE_METATYPE(ChatLineModel::WrapList)
 
 #endif