diff options
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);
}
|