diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-06-09 18:37:20 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-06-09 18:37:20 (GMT) |
commit | b3b77f1d4a85a9a933b1a913a90b57a0e2db42a3 (patch) | |
tree | 687cbc55d73155be38adcd00b275f10bc6e5c947 /Swift/QtUI/ChatList | |
parent | d94f950b51dbf4822ebebeb4e27d12002dc1b09e (diff) | |
download | swift-b3b77f1d4a85a9a933b1a913a90b57a0e2db42a3.zip swift-b3b77f1d4a85a9a933b1a913a90b57a0e2db42a3.tar.bz2 |
Fixed compilation warnings.
Diffstat (limited to 'Swift/QtUI/ChatList')
-rw-r--r-- | Swift/QtUI/ChatList/ChatListItem.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Swift/QtUI/ChatList/ChatListItem.h b/Swift/QtUI/ChatList/ChatListItem.h index b919c6b..57a85da 100644 --- a/Swift/QtUI/ChatList/ChatListItem.h +++ b/Swift/QtUI/ChatList/ChatListItem.h @@ -13,8 +13,11 @@ namespace Swift { class ChatListItem { public: ChatListItem(ChatListGroupItem* parent) {parent_ = parent;}; + virtual ~ChatListItem() {} + ChatListGroupItem* parent() {return parent_;}; virtual QVariant data(int role) = 0; + private: ChatListGroupItem* parent_; }; |