]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/string.cpp
Compile with EVC 3.0 2002
[wxWidgets.git] / src / common / string.cpp
index 37bda6581efd58627a2e807d921fdb7de5fa38b9..c43bde8e7d3271f93efc7c7e4d2fecdc1d62b5df 100644 (file)
@@ -1013,10 +1013,6 @@ wxString::Replace(const wxChar *szOld, const wxChar *szNew, bool bReplaceAll)
   return uiCount;
 }
 
-#ifdef __WXWINCE__
-inline int isascii(wxChar c) { return (c >= 0) && (c <=127); }
-#endif
-
 bool wxString::IsAscii() const
 {
   const wxChar *s = (const wxChar*) *this;
@@ -1763,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