]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/string.cpp
Spelling corrections
[wxWidgets.git] / src / common / string.cpp
index 316e0421822b5b924e84a5b2f2a5cce234b6dd07..6b21ca1b09588be2a81743b63c5c93ffc86c5c07 100644 (file)
 // static class variables definition
 // ---------------------------------------------------------------------------
 
-#if defined(__VISAGECPP__) && __IBMCPP__ >= 400
-// must define this static for VA or else you get multiply defined symbols
-// everywhere
-const unsigned int wxSTRING_MAXLEN = UINT_MAX - 100;
-#endif // Visual Age
-
 #if !wxUSE_STL
-  const size_t wxStringBase::npos = wxSTRING_MAXLEN;
+  //According to STL _must_ be a -1 size_t
+  const size_t wxStringBase::npos = (size_t) -1;
 #endif
 
 // ----------------------------------------------------------------------------