diff options
author | Robert Pösel <robyer@seznam.cz> | 2014-09-19 15:42:26 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2014-09-19 15:42:26 +0000 |
commit | 4279c9e641b798b68eb4d520228fc37445264c78 (patch) | |
tree | bfae40114dbdb5e7cf826c3e1f8c42afcf097be4 /protocols/FacebookRM/src/entities.h | |
parent | 9ed60637b814fb9303b4bebefacf8e88e5b52383 (diff) |
Facebook: Receive info (message) about missed video call
git-svn-id: http://svn.miranda-ng.org/main/trunk@10520 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/entities.h')
-rw-r--r-- | protocols/FacebookRM/src/entities.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/protocols/FacebookRM/src/entities.h b/protocols/FacebookRM/src/entities.h index 0be3d2d396..94fb9196f3 100644 --- a/protocols/FacebookRM/src/entities.h +++ b/protocols/FacebookRM/src/entities.h @@ -110,6 +110,7 @@ struct facebook_message bool isIncoming; bool isUnread; bool isChat; + MessageType type; int flag_; @@ -119,6 +120,7 @@ struct facebook_message this->time = 0; this->isUnread = this->isIncoming = true; this->isChat = false; + this->type = MESSAGE; this->flag_ = 0; } @@ -133,6 +135,7 @@ struct facebook_message this->isIncoming = msg.isIncoming; this->isUnread = msg.isUnread; this->isChat = msg.isChat; + this->type = msg.type; this->flag_ = msg.flag_; } }; |