]> git.saurik.com Git - wxWidgets.git/commitdiff
Use wxStricmp instead of Stricmp in CmpNoCase.
authorOve Kaaven <ovek@arcticnet.no>
Thu, 10 Jun 1999 18:10:10 +0000 (18:10 +0000)
committerOve Kaaven <ovek@arcticnet.no>
Thu, 10 Jun 1999 18:10:10 +0000 (18:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2747 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/string.h

index 6a966ae6fc145884ace65e07e04742ca6f7f2966..8948591e53f25ba926e17f7cbcf01daf987528a4 100644 (file)
@@ -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