From b280d2eae93fb22b4fdb45218d8a06287a97030e Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Fri, 22 May 2015 12:49:22 +0000 Subject: replace _tcscmp to mir_tstrcmp git-svn-id: http://svn.miranda-ng.org/main/trunk@13753 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/modules/clist/groups.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/clist/groups.cpp') diff --git a/src/modules/clist/groups.cpp b/src/modules/clist/groups.cpp index 4df22391ec..53dfd6a659 100644 --- a/src/modules/clist/groups.cpp +++ b/src/modules/clist/groups.cpp @@ -53,7 +53,7 @@ static int GroupNameExists(const TCHAR *name, int skipGroup) if (grpName == NULL) break; - if (!_tcscmp((TCHAR*)grpName+1, name)) + if (!mir_tstrcmp((TCHAR*)grpName+1, name)) return i+1; } return 0; @@ -210,7 +210,7 @@ static INT_PTR DeleteGroup(WPARAM wParam, LPARAM) if (db_get_ts(hContact, "CList", "Group", &dbv)) continue; - if (_tcscmp(dbv.ptszVal, name)) + if (mir_tstrcmp(dbv.ptszVal, name)) { db_free(&dbv); continue; -- cgit v1.2.3