diff options
author | Sergey Bolhovskoy <elzorfox@ya.ru> | 2014-10-06 09:48:49 +0000 |
---|---|---|
committer | Sergey Bolhovskoy <elzorfox@ya.ru> | 2014-10-06 09:48:49 +0000 |
commit | 3897e7500fd9c3a01d4141f9c037ee9432c8eaab (patch) | |
tree | b4d2168370f4206f64c509b792db5735f093eccb /protocols/VKontakte/src/misc.cpp | |
parent | 7af885608ecb5da860d81d692bf15aa26fdb7b8e (diff) |
VKontakte:
fix for filter on search result
upload files support part 2 (audio and documents)
version bump
git-svn-id: http://svn.miranda-ng.org/main/trunk@10704 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/VKontakte/src/misc.cpp')
-rw-r--r-- | protocols/VKontakte/src/misc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/VKontakte/src/misc.cpp b/protocols/VKontakte/src/misc.cpp index 5b417a1971..8d2b866d07 100644 --- a/protocols/VKontakte/src/misc.cpp +++ b/protocols/VKontakte/src/misc.cpp @@ -488,5 +488,5 @@ bool tlstrstr(TCHAR* _s1, TCHAR* _s2) mir_sntprintf(s2, SIZEOF(s2), _T("%s"), _s2);
CharLowerBuff(s1, SIZEOF(s1));
CharLowerBuff(s2, SIZEOF(s2));
- return (_tcsstr(s1, s2) == NULL);
+ return (_tcsstr(s1, s2) != NULL);
}
\ No newline at end of file |