diff options
Diffstat (limited to 'Swift')
-rw-r--r-- | Swift/Controllers/UIInterfaces/ChatListWindowFactory.h | 1 | ||||
-rw-r--r-- | Swift/QtUI/ChatList/ChatListItem.h | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Swift/Controllers/UIInterfaces/ChatListWindowFactory.h b/Swift/Controllers/UIInterfaces/ChatListWindowFactory.h index 7f1afe1..b920e43 100644 --- a/Swift/Controllers/UIInterfaces/ChatListWindowFactory.h +++ b/Swift/Controllers/UIInterfaces/ChatListWindowFactory.h @@ -12,6 +12,7 @@ namespace Swift { class UIEventStream; class ChatListWindowFactory { public: + virtual ~ChatListWindowFactory() {} virtual ChatListWindow* createWindow(UIEventStream* uiEventStream) = 0; }; } 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_; }; |