diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-25 19:24:02 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-25 19:24:02 +0000 |
commit | 418cfb6cb57c9e02ffb9f5aafc747a9dc5b76883 (patch) | |
tree | 791c5ece99d32eaafe9d05dabe44adf80505ab0c /protocols/JabberG/src/jabber_proto.cpp | |
parent | ed8411a5c4f9d13516664e04b2171969114b55b5 (diff) |
no need to close chat room windows in Jabber after logoff
git-svn-id: http://svn.miranda-ng.org/main/trunk@7887 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_proto.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/protocols/JabberG/src/jabber_proto.cpp b/protocols/JabberG/src/jabber_proto.cpp index 836b016cdd..3c1581a46f 100644 --- a/protocols/JabberG/src/jabber_proto.cpp +++ b/protocols/JabberG/src/jabber_proto.cpp @@ -1196,13 +1196,6 @@ int __cdecl CJabberProto::SetStatus(int iNewStatus) if (iNewStatus == ID_STATUS_OFFLINE) {
if (m_ThreadInfo) {
- if (m_bJabberOnline) {
- // Quit all chatrooms (will send quit message)
- LISTFOREACH(i, this, LIST_CHATROOM)
- if (JABBER_LIST_ITEM *item = ListGetItemPtrFromIndex(i))
- GcQuit(item, 0, NULL);
- }
-
m_ThreadInfo->send("</stream:stream>");
m_ThreadInfo->shutdown();
RebuildInfoFrame();
|