more DLL compilation changes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2757 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1999-06-11 00:53:28 +00:00
parent e0272d0578
commit aef82f12c8
2 changed files with 4 additions and 4 deletions

View File

@@ -37,11 +37,11 @@ wxStringTokenizer::~wxStringTokenizer()
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];
for ( int j = 0; j < delims.Length() ; j++ )
for ( size_t j = 0; j < delims.Length() ; j++ )
{
if ( delims[j] == c )
return i;