diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-09-14 18:56:11 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-09-14 18:56:11 +0000 |
commit | 25f87650dab37f5a7380ae2121c7529cb3ac801a (patch) | |
tree | 377f4ba9fd4d3528aeb05414157948c5abaf376f /protocols/WhatsApp/src/proto.h | |
parent | a8c76fb1f7113f18fda981ae885066d04619571f (diff) |
WhatsApp: Fixed reading/storing tiome in database
patch by Cassio:
It should also now display the following in the contact list:
"Last online TIMESTAMP"; When a user is online currently
"Denied: last online TIMESTAMP"; When the user is offline and has blocked "last seen". The time the user was last online simultaneously is used
"Last seen TIMESTAMP"; When a user is offline but "last seen" info is available.
git-svn-id: http://svn.miranda-ng.org/main/trunk@15352 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/WhatsApp/src/proto.h')
-rw-r--r-- | protocols/WhatsApp/src/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/WhatsApp/src/proto.h b/protocols/WhatsApp/src/proto.h index 7e800cf21c..83c2824ae6 100644 --- a/protocols/WhatsApp/src/proto.h +++ b/protocols/WhatsApp/src/proto.h @@ -165,7 +165,7 @@ protected: virtual void onMessageError(const FMessage &message, int paramInt) { ; }
virtual void onPing(const std::string &id) throw (WAException);
virtual void onPingResponseReceived() { }
- virtual void onAvailable(const std::string ¶mString, bool paramBoolean, int lastSeenTime);
+ virtual void onAvailable(const std::string ¶mString, bool paramBoolean, DWORD lastSeenTime);
virtual void onClientConfigReceived(const std::string ¶mString) { }
virtual void onIsTyping(const std::string ¶mString, bool paramBoolean);
virtual void onAccountChange(int paramInt, time_t expire_date) { }
|