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/psp_about.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/psp_about.cpp')
-rw-r--r-- | plugins/UserInfoEx/src/psp_about.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UserInfoEx/src/psp_about.cpp b/plugins/UserInfoEx/src/psp_about.cpp index 0e8362848e..2b1605c292 100644 --- a/plugins/UserInfoEx/src/psp_about.cpp +++ b/plugins/UserInfoEx/src/psp_about.cpp @@ -55,7 +55,7 @@ INT_PTR CALLBACK PSPProcEdit(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam, PSGetBoldFont(hDlg, hBoldFont);
SendDlgItemMessage(hDlg, IDC_PAGETITLE, WM_SETFONT, (WPARAM)hBoldFont, 0);
- if (!mir_stricmp(pszSetting, SET_CONTACT_MYNOTES))
+ if ( !lstrcmpA(pszSetting, SET_CONTACT_MYNOTES))
SetDlgItemText(hDlg, IDC_PAGETITLE, LPGENT("My Notes:"));
else
SetDlgItemText(hDlg, IDC_PAGETITLE, LPGENT("About:"));
|