diff options
author | George Hazan <george.hazan@gmail.com> | 2013-03-28 10:35:19 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-03-28 10:35:19 +0000 |
commit | 5f03619d3bbda7a617f50ded2698cffc434dd525 (patch) | |
tree | 9b08604d73eed50cd39b5836d30ffb869bb86960 /plugins/UserInfoEx/src/dlg_propsheet.cpp | |
parent | 708d6c1bde9ccf83eaa1b81ea73bf40881172e40 (diff) |
warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@4224 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx/src/dlg_propsheet.cpp')
-rw-r--r-- | plugins/UserInfoEx/src/dlg_propsheet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UserInfoEx/src/dlg_propsheet.cpp b/plugins/UserInfoEx/src/dlg_propsheet.cpp index 60ffb52cbb..bfb3212a0b 100644 --- a/plugins/UserInfoEx/src/dlg_propsheet.cpp +++ b/plugins/UserInfoEx/src/dlg_propsheet.cpp @@ -550,7 +550,7 @@ static INT InitDetails(WPARAM wParam, LPARAM lParam) if (lParam) {
// ignore common pages for weather contacts
- if (!pPsh->_pszProto || stricmp(pPsh->_pszProto, "weather"))
+ if (!pPsh->_pszProto || _stricmp(pPsh->_pszProto, "weather"))
{
AddProtocolPages(odp, wParam);
odp.ptszTitle = LPGENT("About") _T("\\") LPGENT("Notes");
|