]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/string.cpp
fix warnings (double to int conversions and unused variables); removed hard TABs...
[wxWidgets.git] / src / common / string.cpp
index 1cb717510f704a8cd0b2c034a04976c9b3423b56..c2bab603e26cf52cb7844689add9f9fdfc078df7 100644 (file)
@@ -174,7 +174,7 @@ void wxStringBase::InitWith(const wxChar *psz, size_t nPos, size_t nLength)
 // poor man's iterators are "void *" pointers
 wxStringBase::wxStringBase(const void *pStart, const void *pEnd)
 {
-  if ( pEnd > pStart )
+  if ( pEnd >= pStart )
   {
     InitWith((const wxChar *)pStart, 0,
              (const wxChar *)pEnd - (const wxChar *)pStart);