summaryrefslogtreecommitdiff
path: root/plugins/MirandaG15/src/CAppletManager.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2015-05-22 19:23:27 +0000
committerKirill Volinsky <mataes2007@gmail.com>2015-05-22 19:23:27 +0000
commit1eb922f8075c53a1a8487045b096693bd27b56dd (patch)
tree2e4ec55f37aaa42d1f93d8a58fcde6c74b2025bb /plugins/MirandaG15/src/CAppletManager.cpp
parente2d7ebd6315a810bd4ea54f1088b84d09c3ca5d2 (diff)
replace _tcsicmp to mir_tstrcmpi
git-svn-id: http://svn.miranda-ng.org/main/trunk@13761 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirandaG15/src/CAppletManager.cpp')
-rw-r--r--plugins/MirandaG15/src/CAppletManager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/MirandaG15/src/CAppletManager.cpp b/plugins/MirandaG15/src/CAppletManager.cpp
index 435ebd3db8..11febc29b1 100644
--- a/plugins/MirandaG15/src/CAppletManager.cpp
+++ b/plugins/MirandaG15/src/CAppletManager.cpp
@@ -1171,7 +1171,7 @@ int CAppletManager::HookChatInbound(WPARAM wParam,LPARAM lParam)
// fetch the network name
if(gcd->iType == GC_EVENT_CHANGESESSIONAME)
{
- if (gcd->ptszID && !_tcsicmp(gcd->ptszID,_T("Network log")))
+ if (gcd->ptszID && !mir_tstrcmpi(gcd->ptszID,_T("Network log")))
{
pIRCCon->strNetwork = toTstring(gce->ptszText);
TRACE(_T("\t Found network identifier: %s\n"),pIRCCon->strNetwork.c_str());
@@ -1196,7 +1196,7 @@ int CAppletManager::HookChatInbound(WPARAM wParam,LPARAM lParam)
strChannel = strChannel.substr(0,pos-1);
else
{
- if(_tcsicmp(gcd->ptszID,_T("Network log")))
+ if(mir_tstrcmpi(gcd->ptszID,_T("Network log")))
TRACE(_T("\t WARNING: ignoring unknown event!\n"));
return 0;
}