From: Ove Kaaven Date: Thu, 10 Jun 1999 18:10:10 +0000 (+0000) Subject: Use wxStricmp instead of Stricmp in CmpNoCase. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/093ac029811faf970dfb750701b818563db0bd03 Use wxStricmp instead of Stricmp in CmpNoCase. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2747 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/string.h b/include/wx/string.h index 6a966ae6fc..8948591e53 100644 --- a/include/wx/string.h +++ b/include/wx/string.h @@ -575,7 +575,7 @@ public: // case-sensitive comparison (returns a value < 0, = 0 or > 0) int Cmp(const wxChar *psz) const { return wxStrcmp(c_str(), psz); } // same as Cmp() but not case-sensitive - int CmpNoCase(const wxChar *psz) const { return Stricmp(c_str(), psz); } + int CmpNoCase(const wxChar *psz) const { return wxStricmp(c_str(), psz); } // test for the string equality, either considering case or not // (if compareWithCase then the case matters) bool IsSameAs(const wxChar *psz, bool compareWithCase = TRUE) const