diff options
Diffstat (limited to 'Swift/QtUI/ChatList/ChatListModel.cpp')
| -rw-r--r-- | Swift/QtUI/ChatList/ChatListModel.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/Swift/QtUI/ChatList/ChatListModel.cpp b/Swift/QtUI/ChatList/ChatListModel.cpp index 50a6ad3..39b6a3c 100644 --- a/Swift/QtUI/ChatList/ChatListModel.cpp +++ b/Swift/QtUI/ChatList/ChatListModel.cpp @@ -16,6 +16,12 @@ ChatListModel::ChatListModel() {  	root_->addItem(mucBookmarks_);  } +void ChatListModel::clear() { +	emit layoutAboutToBeChanged(); +	mucBookmarks_->clear(); +	emit layoutChanged(); +} +  void ChatListModel::addMUCBookmark(const Swift::MUCBookmark& bookmark) {  	emit layoutAboutToBeChanged();  	mucBookmarks_->addItem(new ChatListMUCItem(bookmark, mucBookmarks_));  | 
 Swift