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 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/SmileyAdd/dlgboxsubclass.cpp') 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) -- cgit v1.2.3