diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-08-15 10:12:35 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-08-15 10:12:35 +0000 |
commit | 1db4b29d772702e85571b12172f9e3f86bf095b0 (patch) | |
tree | 566436ce794506776c7faf5e4e364a9dfc2a2dd0 /protocols/Tox/src/tox_core.cpp | |
parent | 06d5a34fee26731c821392c594e181cc6d0302e8 (diff) |
Tox: added search by toxme.io
git-svn-id: http://svn.miranda-ng.org/main/trunk@14957 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_core.cpp')
-rw-r--r-- | protocols/Tox/src/tox_core.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Tox/src/tox_core.cpp b/protocols/Tox/src/tox_core.cpp index 51e7ac70d8..fc5527adec 100644 --- a/protocols/Tox/src/tox_core.cpp +++ b/protocols/Tox/src/tox_core.cpp @@ -77,11 +77,11 @@ bool CToxProto::InitToxCore() uint8_t nick[TOX_MAX_NAME_LENGTH] = { 0 };
tox_self_get_name(tox, nick);
- setWString("Nick", ptrW(Utf8DecodeW((char*)nick)));
+ setTString("Nick", ptrT(Utf8DecodeT((char*)nick)));
uint8_t statusMessage[TOX_MAX_STATUS_MESSAGE_LENGTH] = { 0 };
tox_self_get_status_message(tox, statusMessage);
- setWString("StatusMsg", ptrW(Utf8DecodeW((char*)statusMessage)));
+ setTString("StatusMsg", ptrT(Utf8DecodeT((char*)statusMessage)));
return true;
}
|