diff options
author | Robert Pösel <robyer@seznam.cz> | 2014-07-06 09:00:21 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2014-07-06 09:00:21 +0000 |
commit | 1e11f5fc920b54759b2ec16854d8f9e65662cdec (patch) | |
tree | 51dd2419a0278a57d1d0dfab6697624c8dc2ced8 /protocols/FacebookRM/src/proto.h | |
parent | ea1f790f193039c1091d6c091825fe924a30fcb0 (diff) |
Facebook: Fix invisible status (now it's not true-invisible again)
It's not fully tested, should be fixed better later.
git-svn-id: http://svn.miranda-ng.org/main/trunk@9702 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/proto.h')
-rw-r--r-- | protocols/FacebookRM/src/proto.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/protocols/FacebookRM/src/proto.h b/protocols/FacebookRM/src/proto.h index 0887d402a7..7a1b208707 100644 --- a/protocols/FacebookRM/src/proto.h +++ b/protocols/FacebookRM/src/proto.h @@ -47,9 +47,12 @@ public: inline bool isInvisible() { - return (m_iStatus == ID_STATUS_INVISIBLE); + return m_invisible; + //return (m_iStatus == ID_STATUS_INVISIBLE); } + bool m_invisible; + // DB utils missing in proto_interface __forceinline INT_PTR getStringUtf(const char *name, DBVARIANT *result) { |