diff options
author | George Hazan <george.hazan@gmail.com> | 2012-11-20 09:45:33 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-11-20 09:45:33 +0000 |
commit | fedcd0462671c913f1b36e2111b3a5c8161f2b3e (patch) | |
tree | 7bf491af251cbba46c68b47518cd52c8df734702 /plugins/UserInfoEx/src/svc_gender.cpp | |
parent | 01d02592c3b4b6dee10c62d64c9f5e5c4953a01c (diff) |
fix for the endless recursion in uinfoex
git-svn-id: http://svn.miranda-ng.org/main/trunk@2387 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx/src/svc_gender.cpp')
-rw-r--r-- | plugins/UserInfoEx/src/svc_gender.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UserInfoEx/src/svc_gender.cpp b/plugins/UserInfoEx/src/svc_gender.cpp index f849569644..cf820a1ba4 100644 --- a/plugins/UserInfoEx/src/svc_gender.cpp +++ b/plugins/UserInfoEx/src/svc_gender.cpp @@ -100,7 +100,7 @@ static INT OnCListApplyIcons(HANDLE hContact, LPARAM) **/
static INT OnContactSettingChanged(HANDLE hContact, DBCONTACTWRITESETTING* pdbcws)
{
- if (hContact && pdbcws && (pdbcws->value.type <= DBVT_BYTE) && !mir_stricmp(pdbcws->szSetting, SET_CONTACT_GENDER))
+ if (hContact && pdbcws && (pdbcws->value.type <= DBVT_BYTE) && !lstrcmpA(pdbcws->szSetting, SET_CONTACT_GENDER))
OnCListApplyIcons(hContact, 0);
return 0;
|