]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/tokenzr.cpp
wxSize::[GS]et{Width|Height} added
[wxWidgets.git] / src / common / tokenzr.cpp
index c4f4bfb899ba68b87ed7f5afea0a2ebd082c1e0b..b22a79ba2650e3d8625da91ffca41f5277cd86be 100644 (file)
@@ -37,11 +37,11 @@ wxStringTokenizer::~wxStringTokenizer()
 
 off_t wxStringTokenizer::FindDelims(const wxString& str, const wxString& delims) const
 {
 
 off_t wxStringTokenizer::FindDelims(const wxString& str, const wxString& delims) const
 {
-    for ( int i = 0; i < str.Length(); i++ )
+    for ( size_t i = 0; i < str.Length(); i++ )
     {
         char c = str[i];
 
     {
         char c = str[i];
 
-        for ( int j = 0; j < delims.Length() ; j++ )
+        for ( size_t j = 0; j < delims.Length() ; j++ )
         {
             if ( delims[j] == c )
                 return i;
         {
             if ( delims[j] == c )
                 return i;