diff options
author | George Hazan <ghazan@miranda.im> | 2021-01-04 21:27:45 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-01-04 21:27:45 +0300 |
commit | a9a97c244bf5cea6d1e7a2e48b91f08558829387 (patch) | |
tree | 2dc7edeaf2ceae48dec7b89efb39ebb59b1abef3 /protocols/Steam/src/steam_proto.h | |
parent | 8adfc2b2b5fa4aaab9fee1e8b5a38ad44da94306 (diff) |
Steam:
- global LastMessageTS field removed because it's senseless, now it's stored for each contact separately;
- options code cleaning;
- project file fix;
- version bump
Diffstat (limited to 'protocols/Steam/src/steam_proto.h')
-rw-r--r-- | protocols/Steam/src/steam_proto.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/protocols/Steam/src/steam_proto.h b/protocols/Steam/src/steam_proto.h index 6ebec59789..aec2210c51 100644 --- a/protocols/Steam/src/steam_proto.h +++ b/protocols/Steam/src/steam_proto.h @@ -79,12 +79,6 @@ class CSteamProto : public PROTO<CSteamProto> std::map<HANDLE, time_t> m_mpOutMessages;
std::map<std::string, time_t> m_typingTimestamps;
- /**
- * Used only to compare in steam_history.cpp, others should write such value directly to db profile, because PollingThread
- * may start sooner than steam_history requests so it could possibly break getting history messages from server
- */
- time_t m_lastMessageTS;
-
public:
// PROTO_INTERFACE
CSteamProto(const char *protoName, const wchar_t *userName);
|