diff options
author | George Hazan <george.hazan@gmail.com> | 2015-02-23 14:39:27 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-02-23 14:39:27 +0000 |
commit | b9944684c1ca56a24b527772d3543bc3535c960a (patch) | |
tree | 6f36c62d29967e23eea8b89764beb56736ee60b5 /protocols/JabberG/src/jabber_proto.h | |
parent | b798a0bbb1f784fa6f7330db6b81ee2ba3a6f483 (diff) |
fix for a crash in Jabber user info dialog
git-svn-id: http://svn.miranda-ng.org/main/trunk@12246 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.h')
-rw-r--r-- | protocols/JabberG/src/jabber_proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_proto.h b/protocols/JabberG/src/jabber_proto.h index 96c57806f6..81e50ade07 100644 --- a/protocols/JabberG/src/jabber_proto.h +++ b/protocols/JabberG/src/jabber_proto.h @@ -160,7 +160,6 @@ struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface HANDLE m_hThreadHandle;
TCHAR *m_szJabberJID;
- BOOL m_bJabberOnline; // XMPP connection initialized and we can send XMPP packets
int m_nJabberSearchID;
time_t m_tmJabberLoggedInTime;
time_t m_tmJabberIdleStartTime;
@@ -170,6 +169,7 @@ struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface mir_cs m_csModeMsgMutex;
JABBER_MODEMSGS m_modeMsgs;
+ bool m_bJabberOnline; // XMPP connection initialized and we can send XMPP packets
bool m_bShutdown;
bool m_bSendKeepAlive;
bool m_bPepSupported;
|