diff options
author | Sergey Bolhovskoy <elzorfox@ya.ru> | 2015-06-22 14:15:36 +0000 |
---|---|---|
committer | Sergey Bolhovskoy <elzorfox@ya.ru> | 2015-06-22 14:15:36 +0000 |
commit | 0514092bbe0dfcfa7a091a7a66b4df83be3a7eb9 (patch) | |
tree | 674ab9d3fccf2e62b4d6861c97bf048ad38f65d2 /protocols/VKontakte/src/misc.cpp | |
parent | ca410fe247243f87ac3234f526f708111f227c74 (diff) |
VKontakte:
fix logline for quite from muc
fix invite after kick situation
fix muc title on return to muc
change type for IsEmpty() parameter
version bump
git-svn-id: http://svn.miranda-ng.org/main/trunk@14327 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/VKontakte/src/misc.cpp')
-rw-r--r-- | protocols/VKontakte/src/misc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/VKontakte/src/misc.cpp b/protocols/VKontakte/src/misc.cpp index 39bc02044a..9646b486d2 100644 --- a/protocols/VKontakte/src/misc.cpp +++ b/protocols/VKontakte/src/misc.cpp @@ -23,7 +23,7 @@ static const char* szGiftTypes[] = { "thumb_256", "thumb_96", "thumb_48" }; JSONNode nullNode(JSON_NULL);
-bool IsEmpty(TCHAR *str)
+bool IsEmpty(LPCTSTR str)
{
if (str == NULL)
return true;
@@ -32,7 +32,7 @@ bool IsEmpty(TCHAR *str) return false;
}
-bool IsEmpty(char *str)
+bool IsEmpty(LPCSTR str)
{
if (str == NULL)
return true;
|