From 159b565b390687258ee65a3b66596e118752063c Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Fri, 22 May 2015 12:33:13 +0000 Subject: replace strcmp to mir_strcmp git-svn-id: http://svn.miranda-ng.org/main/trunk@13752 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/IEView/src/Template.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/IEView/src/Template.cpp') diff --git a/plugins/IEView/src/Template.cpp b/plugins/IEView/src/Template.cpp index d405277f28..e9a6271fde 100644 --- a/plugins/IEView/src/Template.cpp +++ b/plugins/IEView/src/Template.cpp @@ -113,7 +113,7 @@ Template* Template::getNext() bool Template::equals(const char *name) { - if (!strcmp(name, this->name)) + if (!mir_strcmp(name, this->name)) return true; return false; @@ -252,7 +252,7 @@ TemplateMap* TemplateMap::add(const char *id, const char *filename) { TemplateMap *map; for (map = mapList; map != NULL; map = map->next) { - if (!strcmp(map->name, id)) { + if (!mir_strcmp(map->name, id)) { map->clear(); map->setFilename(filename); return map; @@ -425,7 +425,7 @@ Template* TemplateMap::getTemplate(const char *text) Template* TemplateMap::getTemplate(const char *proto, const char *text) { for (TemplateMap *ptr = mapList; ptr != NULL; ptr = ptr->next) - if (!strcmp(ptr->name, proto)) + if (!mir_strcmp(ptr->name, proto)) return ptr->getTemplate(text); return NULL; @@ -434,7 +434,7 @@ Template* TemplateMap::getTemplate(const char *proto, const char *text) TemplateMap* TemplateMap::getTemplateMap(const char *proto) { for (TemplateMap *ptr = mapList; ptr != NULL; ptr = ptr->next) - if (!strcmp(ptr->name, proto)) + if (!mir_strcmp(ptr->name, proto)) return ptr; return NULL; -- cgit v1.2.3