summaryrefslogtreecommitdiff
path: root/protocols/ICQ-WIM/src/proto.h
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-01-30 17:56:44 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-01-30 17:56:44 +0300
commit86606a9506e906b204dd7a01407e35cbc192894d (patch)
tree70c15d4fd83e4f6e05c303b2379cb39424fc7b79 /protocols/ICQ-WIM/src/proto.h
parent8969c6d6ba6a0641768baa3a1e2bdfa51c59249b (diff)
fixes #1755 (Incorrect message timestamps in dialog between Miranda and web-ICQ)
Diffstat (limited to 'protocols/ICQ-WIM/src/proto.h')
-rw-r--r--protocols/ICQ-WIM/src/proto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/ICQ-WIM/src/proto.h b/protocols/ICQ-WIM/src/proto.h
index a83fc60646..68619e2a6c 100644
--- a/protocols/ICQ-WIM/src/proto.h
+++ b/protocols/ICQ-WIM/src/proto.h
@@ -129,7 +129,7 @@ class CIcqProto : public PROTO<CIcqProto>
friend struct CIcqRegistrationDlg;
friend class CGroupchatInviteDlg;
- bool m_bOnline = false, m_bTerminated = false;
+ bool m_bOnline, m_bTerminated, m_bFirstBos;
MCONTACT CheckOwnMessage(const CMStringA &reqId, const CMStringA &msgId, bool bRemove);
void CheckPassword(void);
void ConnectionFailed(int iReason, int iErrorCode = 0);
@@ -145,7 +145,7 @@ class CIcqProto : public PROTO<CIcqProto>
void Json2int(MCONTACT, const JSONNode&, const char *szJson, const char *szSetting);
void Json2string(MCONTACT, const JSONNode&, const char *szJson, const char *szSetting);
MCONTACT ParseBuddyInfo(const JSONNode &buddy, MCONTACT hContact = -1);
- void ParseMessage(MCONTACT hContact, __int64 &lastMsgId, const JSONNode &msg);
+ void ParseMessage(MCONTACT hContact, __int64 &lastMsgId, const JSONNode &msg, bool bFromHistory);
void OnLoggedIn(void);
void OnLoggedOut(void);