diff options
author | George Hazan <george.hazan@gmail.com> | 2012-12-03 11:37:01 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-12-03 11:37:01 +0000 |
commit | 9c74643c7bd9e51291ef5a981effeb441d63c68b (patch) | |
tree | c1ba644ae255df640e434e892700698d40bd622f /plugins/MetaContacts/src | |
parent | 7d26051b6532aa9697ff46ed186ec911da7b24a1 (diff) |
corrupted nicks in metacontacts
git-svn-id: http://svn.miranda-ng.org/main/trunk@2619 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MetaContacts/src')
-rw-r--r-- | plugins/MetaContacts/src/meta_utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MetaContacts/src/meta_utils.cpp b/plugins/MetaContacts/src/meta_utils.cpp index f6370c6bea..25b0f9e684 100644 --- a/plugins/MetaContacts/src/meta_utils.cpp +++ b/plugins/MetaContacts/src/meta_utils.cpp @@ -188,7 +188,7 @@ int Meta_SetNick(char *szProto) {
CONTACTINFO ci;
ci.cbSize = sizeof(CONTACTINFO);
- ci.dwFlag = CNF_DISPLAY;
+ ci.dwFlag = CNF_DISPLAY | CNF_TCHAR;
ci.hContact = NULL;
ci.szProto = szProto;
if (CallService(MS_CONTACT_GETCONTACTINFO,0,(LPARAM)&ci))
|