diff options
author | George Hazan <george.hazan@gmail.com> | 2013-06-21 17:05:33 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-06-21 17:05:33 +0000 |
commit | 6ba9043d83f28cf2b6c7d10c5d5495d15de344c1 (patch) | |
tree | 40aeea3b7d6a1198647b4d896b41f725ee85c98b /plugins/Scriver/src/msglog.cpp | |
parent | 2072201029bdd799396b37de23410bab71cc653e (diff) |
own a2t/t2a conversion routines removed from Scriver
git-svn-id: http://svn.miranda-ng.org/main/trunk@5084 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Scriver/src/msglog.cpp')
-rw-r--r-- | plugins/Scriver/src/msglog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Scriver/src/msglog.cpp b/plugins/Scriver/src/msglog.cpp index 92f7f0c85b..e6b86353a0 100644 --- a/plugins/Scriver/src/msglog.cpp +++ b/plugins/Scriver/src/msglog.cpp @@ -102,11 +102,11 @@ TCHAR *GetNickname(HANDLE hContact, const char* szProto) if (!_tcscmp((TCHAR *)ci.pszVal, TranslateW(_T("'(Unknown Contact)'")))) {
ci.dwFlag &= ~CNF_UNICODE;
if (!CallService(MS_CONTACT_GETCONTACTINFO, 0, (LPARAM)& ci))
- szName = a2t((char*)ci.pszVal);
+ szName = mir_a2t((char*)ci.pszVal);
}
else szName = mir_tstrdup((TCHAR *)ci.pszVal);
}
- else szName = a2t((char*)ci.pszVal);
+ else szName = mir_a2t((char*)ci.pszVal);
mir_free(ci.pszVal);
if (szName != NULL)
|