]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/string.cpp
wxCocoa: Added gauge.(mm|h)
[wxWidgets.git] / src / common / string.cpp
index 7ac3f254a2fd960f5c32a4910c20b8277d4c25e6..c43bde8e7d3271f93efc7c7e4d2fecdc1d62b5df 100644 (file)
@@ -1017,7 +1017,7 @@ bool wxString::IsAscii() const
 {
   const wxChar *s = (const wxChar*) *this;
   while(*s){
-    if(!wxIsascii(*s)) return(FALSE);
+    if(!isascii(*s)) return(FALSE);
     s++;
   }
   return(TRUE);
@@ -1759,10 +1759,10 @@ wxString& wxString::replace(size_t nStart, size_t nLen,
 // ArrayString
 // ============================================================================
 
-#if !wxUSE_STL
-
 #include "wx/arrstr.h"
 
+#if !wxUSE_STL
+
 // size increment = min(50% of current size, ARRAY_MAXSIZE_INCREMENT)
 #define   ARRAY_MAXSIZE_INCREMENT       4096