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 --- plugins/Variables/src/parse_system.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/Variables/src/parse_system.cpp') diff --git a/plugins/Variables/src/parse_system.cpp b/plugins/Variables/src/parse_system.cpp index 35ba4e21df..1298f73464 100644 --- a/plugins/Variables/src/parse_system.cpp +++ b/plugins/Variables/src/parse_system.cpp @@ -466,13 +466,13 @@ static TCHAR *parseRegistryValue(ARGUMENTSINFO *ai) *cur = 0; HKEY hKey; - if (!_tcscmp(key, _T("HKEY_CLASSES_ROOT"))) + if (!mir_tstrcmp(key, _T("HKEY_CLASSES_ROOT"))) hKey = HKEY_CLASSES_ROOT; - else if (!_tcscmp(key, _T("HKEY_CURRENT_USER"))) + else if (!mir_tstrcmp(key, _T("HKEY_CURRENT_USER"))) hKey = HKEY_CURRENT_USER; - else if (!_tcscmp(key, _T("HKEY_LOCAL_MACHINE"))) + else if (!mir_tstrcmp(key, _T("HKEY_LOCAL_MACHINE"))) hKey = HKEY_LOCAL_MACHINE; - else if (!_tcscmp(key, _T("HKEY_USERS"))) + else if (!mir_tstrcmp(key, _T("HKEY_USERS"))) hKey = HKEY_USERS; else { mir_free(key); -- cgit v1.2.3