diff options
| author | Remko Tronçon <git@el-tramo.be> | 2010-03-28 18:34:38 (GMT) | 
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2010-03-28 18:34:38 (GMT) | 
| commit | b9468847a2a77ed5d7909a6c0cc9bf2e53a7252f (patch) | |
| tree | cb32c5c601cb5fb3dbce34196dbbaa410cf5360c /Swift/QtUI/ChatList/ChatListMUCItem.h | |
| parent | 2e739049b4581c9547943867cea31ad6b2c3784a (diff) | |
| download | swift-contrib-b9468847a2a77ed5d7909a6c0cc9bf2e53a7252f.zip swift-contrib-b9468847a2a77ed5d7909a6c0cc9bf2e53a7252f.tar.bz2  | |
Fix windows compilation.
Diffstat (limited to 'Swift/QtUI/ChatList/ChatListMUCItem.h')
| -rw-r--r-- | Swift/QtUI/ChatList/ChatListMUCItem.h | 2 | 
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_;  | 
 Swift