From 920181e8bd7ee69f456d1e415bd7270c7b23c1f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20P=C3=B6sel?= Date: Mon, 28 May 2012 09:27:07 +0000 Subject: SmileyAdd: Protos with only PF1_CHAT flag (and no PF1_IM) should be supported too git-svn-id: http://svn.miranda-ng.org/main/trunk@207 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/SmileyAdd/dlgboxsubclass.cpp | 6 +++--- plugins/SmileyAdd/general.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/SmileyAdd') diff --git a/plugins/SmileyAdd/dlgboxsubclass.cpp b/plugins/SmileyAdd/dlgboxsubclass.cpp index 8da22c6cb1..9e90dd3f81 100644 --- a/plugins/SmileyAdd/dlgboxsubclass.cpp +++ b/plugins/SmileyAdd/dlgboxsubclass.cpp @@ -214,7 +214,7 @@ public: } else { - doSmileyReplace = true;; + doSmileyReplace = true; OldButtonPlace = false; showButtonLine = DBGetContactSettingByte(NULL, "SRMM", "ShowButtonLine", TRUE) != 0; } @@ -224,8 +224,8 @@ public: if (ProtocolName[0] != 0) { INT_PTR cap = CallProtoService(ProtocolName, PS_GETCAPS, PFLAGNUM_1, 0); - doSmileyButton &= ((cap & PF1_IMSEND) != 0); - doSmileyReplace &= ((cap & PF1_IMRECV) != 0); + doSmileyButton &= ((cap & (PF1_IMSEND | PF1_CHAT)) != 0); + doSmileyReplace &= ((cap & (PF1_IMRECV | PF1_CHAT)) != 0); } if (doSmileyButton && opt.PluginSupportEnabled) diff --git a/plugins/SmileyAdd/general.cpp b/plugins/SmileyAdd/general.cpp index 0e1c6e7131..b4fdc07df3 100644 --- a/plugins/SmileyAdd/general.cpp +++ b/plugins/SmileyAdd/general.cpp @@ -271,7 +271,7 @@ HANDLE DecodeMetaContact(HANDLE hContact) bool IsSmileyProto(char* proto) { return proto && (!metaProtoName || strcmp(proto, metaProtoName)) && - (CallProtoService(proto, PS_GETCAPS, PFLAGNUM_1, 0) & PF1_IM); + (CallProtoService(proto, PS_GETCAPS, PFLAGNUM_1, 0) & (PF1_IM | PF1_CHAT)); } void ReportError(const TCHAR* errmsg) -- cgit v1.2.3