summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-03-28 18:34:38 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-03-28 18:34:38 (GMT)
commitb9468847a2a77ed5d7909a6c0cc9bf2e53a7252f (patch)
treecb32c5c601cb5fb3dbce34196dbbaa410cf5360c /Swift/QtUI/ChatList/ChatListMUCItem.h
parent2e739049b4581c9547943867cea31ad6b2c3784a (diff)
downloadswift-b9468847a2a77ed5d7909a6c0cc9bf2e53a7252f.zip
swift-b9468847a2a77ed5d7909a6c0cc9bf2e53a7252f.tar.bz2
Fix windows compilation.
Diffstat (limited to 'Swift/QtUI/ChatList/ChatListMUCItem.h')
-rw-r--r--Swift/QtUI/ChatList/ChatListMUCItem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/ChatList/ChatListMUCItem.h b/Swift/QtUI/ChatList/ChatListMUCItem.h
index 53574b5..dd3f185 100644
--- a/Swift/QtUI/ChatList/ChatListMUCItem.h
+++ b/Swift/QtUI/ChatList/ChatListMUCItem.h
@@ -13,7 +13,7 @@ namespace Swift {
public:
ChatListMUCItem(boost::shared_ptr<MUCBookmark> bookmark, ChatListGroupItem* parent) : ChatListItem(parent), bookmark_(bookmark) {};
boost::shared_ptr<MUCBookmark> getBookmark() {return bookmark_;};
- QVariant data(int role) {};
+ QVariant data(int role) { return QVariant(); };
private:
boost::shared_ptr<MUCBookmark> bookmark_;
QList<ChatListItem*> items_;