SPUTDEV compiles again, and the MessageModel now actually is filled with messages...
[quassel.git] / src / qtui / chatline.cpp
index edb89f1..ef59fc4 100644 (file)
 
 #include "chatline.h"
 
-Chatline::Chatline(const QMessage &msg) : MessageItem(msg) {
+Chatline::Chatline(const Message &msg) : MessageItem(msg) {
 
 
 }
 
 
+QVariant Chatline::data(int column, int role) const {
+  return MessageItem::data(column, role);
+}
+
+bool Chatline::setData(int column, const QVariant &value, int role) {
+  return false;
+}