diff options
author | George Hazan <george.hazan@gmail.com> | 2013-04-23 08:32:10 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-04-23 08:32:10 +0000 |
commit | e13abbf0f5a4bcef939e4e32e06a7e8e74e72465 (patch) | |
tree | 6620ea1f00a5506a1175344106014b00c1206c90 /plugins/Clist_modern/src/modern_clcitems.cpp | |
parent | 78a92aad0e3c2941b11b3115d9fd7aae44e5fc37 (diff) |
- clist_modern switched to the core wildcmp[i] functions
- fixed chinese in skin options
git-svn-id: http://svn.miranda-ng.org/main/trunk@4512 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/modern_clcitems.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_clcitems.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/Clist_modern/src/modern_clcitems.cpp b/plugins/Clist_modern/src/modern_clcitems.cpp index 3aa6b7e313..68e8724401 100644 --- a/plugins/Clist_modern/src/modern_clcitems.cpp +++ b/plugins/Clist_modern/src/modern_clcitems.cpp @@ -235,7 +235,7 @@ void * AddTempGroup(HWND hwnd,ClcData *dat,const TCHAR *szName,DWORD flags,int g TCHAR * szGroupName;
DWORD groupFlags;
- if ( wildcmp( _T2A(szName), "-@-HIDDEN-GROUP-@-",0))
+ if ( wildcmp( _T2A(szName), "-@-HIDDEN-GROUP-@-"))
return NULL;
for (i = 1;;i++) {
@@ -339,7 +339,6 @@ int RestoreSelection( ClcData *dat, HANDLE hSelected ) void cliRebuildEntireList(HWND hwnd,ClcData *dat)
{
DWORD style = GetWindowLongPtr(hwnd,GWL_STYLE);
- HANDLE hContact;
ClcContact *cont;
ClcGroup *group;
static int rebuildCounter = 0;
|