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/UserInfoEx/src/ex_import/tinyxml.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'plugins/UserInfoEx/src/ex_import/tinyxml.cpp') diff --git a/plugins/UserInfoEx/src/ex_import/tinyxml.cpp b/plugins/UserInfoEx/src/ex_import/tinyxml.cpp index 2c815d536c..2692a3196f 100644 --- a/plugins/UserInfoEx/src/ex_import/tinyxml.cpp +++ b/plugins/UserInfoEx/src/ex_import/tinyxml.cpp @@ -357,7 +357,7 @@ const TiXmlNode* TiXmlNode::FirstChild(const char * _value) const const TiXmlNode* node; for (node = firstChild; node; node = node->next) { - if (strcmp(node->Value(), _value) == 0) + if (mir_strcmp(node->Value(), _value) == 0) return node; } return 0; @@ -369,7 +369,7 @@ TiXmlNode* TiXmlNode::FirstChild(const char * _value) TiXmlNode* node; for (node = firstChild; node; node = node->next) { - if (strcmp(node->Value(), _value) == 0) + if (mir_strcmp(node->Value(), _value) == 0) return node; } return 0; @@ -381,7 +381,7 @@ const TiXmlNode* TiXmlNode::LastChild(const char * _value) const const TiXmlNode* node; for (node = lastChild; node; node = node->prev) { - if (strcmp(node->Value(), _value) == 0) + if (mir_strcmp(node->Value(), _value) == 0) return node; } return 0; @@ -392,7 +392,7 @@ TiXmlNode* TiXmlNode::LastChild(const char * _value) TiXmlNode* node; for (node = lastChild; node; node = node->prev) { - if (strcmp(node->Value(), _value) == 0) + if (mir_strcmp(node->Value(), _value) == 0) return node; } return 0; @@ -455,7 +455,7 @@ const TiXmlNode* TiXmlNode::NextSibling(const char * _value) const const TiXmlNode* node; for (node = next; node; node = node->next) { - if (strcmp(node->Value(), _value) == 0) + if (mir_strcmp(node->Value(), _value) == 0) return node; } return 0; @@ -466,7 +466,7 @@ TiXmlNode* TiXmlNode::NextSibling(const char * _value) TiXmlNode* node; for (node = next; node; node = node->next) { - if (strcmp(node->Value(), _value) == 0) + if (mir_strcmp(node->Value(), _value) == 0) return node; } return 0; @@ -477,7 +477,7 @@ const TiXmlNode* TiXmlNode::PreviousSibling(const char * _value) const const TiXmlNode* node; for (node = prev; node; node = node->prev) { - if (strcmp(node->Value(), _value) == 0) + if (mir_strcmp(node->Value(), _value) == 0) return node; } return 0; @@ -488,7 +488,7 @@ TiXmlNode* TiXmlNode::PreviousSibling(const char * _value) TiXmlNode* node; for (node = prev; node; node = node->prev) { - if (strcmp(node->Value(), _value) == 0) + if (mir_strcmp(node->Value(), _value) == 0) return node; } return 0; -- cgit v1.2.3