]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/tokenzr.cpp
Update OpenVMS compile support
[wxWidgets.git] / src / common / tokenzr.cpp
index 12aa6c2e1d55956a1a4fe50ae135578d4396acf8..8c29cd7cfa6db0f59587f465ad50fd674e30bdf9 100644 (file)
@@ -260,10 +260,11 @@ wxString wxStringTokenizer::GetNextToken()
         {
             // in wxTOKEN_RET_DELIMS mode we return the delimiter character
             // with token, otherwise leave it out
+            wxString::const_iterator tokenEnd(pos);
             if ( m_mode == wxTOKEN_RET_DELIMS )
-                ++pos;
+                ++tokenEnd;
 
-            token.assign(m_pos, pos);
+            token.assign(m_pos, tokenEnd);
 
             // skip the token and the trailing delimiter
             m_pos = pos + 1;