diff options
author | George Hazan <ghazan@miranda.im> | 2019-02-04 21:33:18 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-02-04 21:33:26 +0300 |
commit | 338a21fdbdab5863b17dd64aa087110cc33049d6 (patch) | |
tree | c8736d80fbf0531b20445ab114bc5ffc27a49426 /protocols/ICQ-WIM/src/proto.cpp | |
parent | 3f6d3a6f5c6075e6c4f85ccbfe17b128c81a9aad (diff) |
fixes #1718 (ICQ10: major crutch to compensate behavior of the official ICQ client)
Diffstat (limited to 'protocols/ICQ-WIM/src/proto.cpp')
-rw-r--r-- | protocols/ICQ-WIM/src/proto.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/protocols/ICQ-WIM/src/proto.cpp b/protocols/ICQ-WIM/src/proto.cpp index 38d65bf345..2e225891c4 100644 --- a/protocols/ICQ-WIM/src/proto.cpp +++ b/protocols/ICQ-WIM/src/proto.cpp @@ -42,6 +42,10 @@ CIcqProto::CIcqProto(const char* aProtoName, const wchar_t* aUserName) : m_evRequestsQueue(CreateEvent(nullptr, FALSE, FALSE, nullptr)), m_dwUin(this, DB_KEY_UIN, 0), m_szEmail(this, "Email"), + m_iStatus1(this, "Status1", ID_STATUS_AWAY), + m_iStatus2(this, "Status2", ID_STATUS_NA), + m_iTimeDiff1(this, "TimeDiff1", 0), + m_iTimeDiff2(this, "TimeDiff2", 0), m_szPassword(this, "Password"), m_bHideGroupchats(this, "HideChats", 1) { |