diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-03-26 13:42:19 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-03-26 13:42:19 (GMT) |
commit | 42cf17e614f0c490ea214e36ac4e7ded2d0495b7 (patch) | |
tree | d29dd06d1942c89a9e7cfb2243359b4460df01af /Swift/QtUI | |
parent | fd6e929a54514d5c3f77956429d5ab5fb4271ff2 (diff) | |
download | swift-42cf17e614f0c490ea214e36ac4e7ded2d0495b7.zip swift-42cf17e614f0c490ea214e36ac4e7ded2d0495b7.tar.bz2 |
Remove MUCs from the ChatsManager's list once you leave them.
Resolves: #292
Diffstat (limited to 'Swift/QtUI')
-rw-r--r-- | Swift/QtUI/QtChatTabs.cpp | 2 | ||||
-rw-r--r-- | Swift/QtUI/QtChatWindow.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Swift/QtUI/QtChatTabs.cpp b/Swift/QtUI/QtChatTabs.cpp index 53fa5ce..67cd8ae 100644 --- a/Swift/QtUI/QtChatTabs.cpp +++ b/Swift/QtUI/QtChatTabs.cpp @@ -31,7 +31,7 @@ void QtChatTabs::closeEvent(QCloseEvent* event) { //Hide first to prevent flickering as each tab is removed. hide(); for (int i = tabs_->count() - 1; i >= 0; i--) { - tabs_->removeTab(i); + tabs_->widget(i)->close(); } event->accept(); } diff --git a/Swift/QtUI/QtChatWindow.cpp b/Swift/QtUI/QtChatWindow.cpp index fe97573..e627960 100644 --- a/Swift/QtUI/QtChatWindow.cpp +++ b/Swift/QtUI/QtChatWindow.cpp @@ -106,9 +106,9 @@ SecurityLabel QtChatWindow::getSelectedSecurityLabel() { } void QtChatWindow::closeEvent(QCloseEvent* event) { - onClosed(); - emit windowClosing(); event->accept(); + emit windowClosing(); + onClosed(); } void QtChatWindow::convertToMUC() { |