diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-08-02 20:10:30 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-08-02 20:10:30 +0000 |
commit | ada3e8fc7b932bee4e01b99fb7944e85ec67d0b2 (patch) | |
tree | 751e556767a411a36c760429e8fc67ca8a048015 | |
parent | 462972ca7cf94c6e959d8c1a2ac6d77e784152a3 (diff) |
fix for r1328
git-svn-id: http://svn.miranda-ng.org/main/trunk@1330 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/SmileyAdd/src/smileyroutines.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SmileyAdd/src/smileyroutines.cpp b/plugins/SmileyAdd/src/smileyroutines.cpp index 130d60123b..95a3d77002 100644 --- a/plugins/SmileyAdd/src/smileyroutines.cpp +++ b/plugins/SmileyAdd/src/smileyroutines.cpp @@ -281,7 +281,7 @@ void ReplaceSmileys(HWND hwnd, SmileyPackType* smp, SmileyPackCType* smcp, const TCHAR classname[20];
GetClassName(hwnd, classname, SIZEOF(classname));
- bool ishpp = (_tcsncmp(classname, _T("THppRichEdit"), 12) == 0) | fireView;
+ bool ishpp = (_tcsncmp(classname, _T("THppRichEdit"), 12) == 0) || fireView;
SetRichCallback(hwnd, NULL, false, true);
|