diff options
author | watcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-11-29 21:47:31 +0000 |
---|---|---|
committer | watcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-11-29 21:47:31 +0000 |
commit | 35a4603c6135738a5c9f7729c6bb19f9ce656c8a (patch) | |
tree | 649db4c74654c5968dfba2a3de74c69b4437127d /SecureIM/crypt_lists.cpp | |
parent | e750e8644fb332c5cb9cc11a7a7cb6c2778e53e8 (diff) |
another part of small project fixes and x64 adaptation in some cases
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@230 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'SecureIM/crypt_lists.cpp')
-rw-r--r-- | SecureIM/crypt_lists.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SecureIM/crypt_lists.cpp b/SecureIM/crypt_lists.cpp index d84925c..3387eb7 100644 --- a/SecureIM/crypt_lists.cpp +++ b/SecureIM/crypt_lists.cpp @@ -280,7 +280,7 @@ void getContactNameA(HANDLE hContact, LPSTR szName) { void getContactName(HANDLE hContact, LPSTR szName) {
- if( bCoreUnicode ) wcscpy((LPWSTR)szName,(LPWSTR)CallService(MS_CLIST_GETCONTACTDISPLAYNAME,(WPARAM)hContact,GCMDF_UNICODE));
+ if( bCoreUnicode ) wcscpy((LPWSTR)szName,(LPWSTR)CallService(MS_CLIST_GETCONTACTDISPLAYNAME,(WPARAM)hContact,GSMDF_UNICODE));
else getContactNameA(hContact, szName);
}
|