diff options
author | Robert Pösel <robyer@seznam.cz> | 2014-06-14 17:31:25 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2014-06-14 17:31:25 +0000 |
commit | 6bcddf950c9540f89462706948dad7e28be31583 (patch) | |
tree | 496d6a46793188d5195a8caaf6ef0bc287d3f2b0 | |
parent | 469640071ddd9581b45f70f3dc2b9c4c2cc31199 (diff) |
Facebook: Fix for duplicit "contact finished typing" popup; Clear statusbar when receive message
git-svn-id: http://svn.miranda-ng.org/main/trunk@9482 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | protocols/FacebookRM/src/messages.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/FacebookRM/src/messages.cpp b/protocols/FacebookRM/src/messages.cpp index 4c26c1402b..800f5c27be 100644 --- a/protocols/FacebookRM/src/messages.cpp +++ b/protocols/FacebookRM/src/messages.cpp @@ -24,7 +24,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. int FacebookProto::RecvMsg(MCONTACT hContact, PROTORECVEVENT *pre)
{
- CallService(MS_PROTO_CONTACTISTYPING, hContact, (LPARAM)PROTOTYPE_CONTACTTYPING_OFF);
+ //CallService(MS_PROTO_CONTACTISTYPING, hContact, (LPARAM)PROTOTYPE_CONTACTTYPING_OFF);
+ CallService(MS_MSG_SETSTATUSTEXT, (WPARAM)hContact, NULL);
return Proto_RecvMessage(hContact, pre);
}
|