summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikalaiR <nikolay.romanovich@narod.ru>2015-04-11 08:46:40 +0000
committerMikalaiR <nikolay.romanovich@narod.ru>2015-04-11 08:46:40 +0000
commit7c84415a6f53cd0744a651ff92c60092435e01ad (patch)
tree1c76e6e812212c219252994650a56256ee5836b6
parent2ca49d1d8f694b763fde90fad9a3c9898132f8e9 (diff)
SkypeWeb: Small fix.
git-svn-id: http://svn.miranda-ng.org/main/trunk@12761 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--protocols/SkypeWeb/src/skype_history_sync.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/SkypeWeb/src/skype_history_sync.cpp b/protocols/SkypeWeb/src/skype_history_sync.cpp
index 908c815db9..56ba691498 100644
--- a/protocols/SkypeWeb/src/skype_history_sync.cpp
+++ b/protocols/SkypeWeb/src/skype_history_sync.cpp
@@ -88,8 +88,8 @@ void CSkypeProto::OnSyncHistory(const NETLIBHTTPREQUEST *response)
if (lastMessage == NULL)
continue;
- char *clientMsgId = _T2A(json_as_string(json_get(lastMessage, "clientmessageid")));
- char *conversationLink = _T2A(json_as_string(json_get(lastMessage, "conversationLink")));
+ char *clientMsgId = mir_t2a(json_as_string(json_get(lastMessage, "clientmessageid")));
+ char *conversationLink = mir_t2a(json_as_string(json_get(lastMessage, "conversationLink")));
time_t composeTime(IsoToUnixTime(ptrT(json_as_string(json_get(lastMessage, "conversationLink")))));
ptrA skypename(ContactUrlToName(conversationLink));