diff options
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;
|