]> git.saurik.com Git - wxWidgets.git/commitdiff
more DLL compilation changes
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 11 Jun 1999 00:53:28 +0000 (00:53 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 11 Jun 1999 00:53:28 +0000 (00:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2757 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/tokenzr.cpp
src/common/wxchar.cpp

index c4f4bfb899ba68b87ed7f5afea0a2ebd082c1e0b..b22a79ba2650e3d8625da91ffca41f5277cd86be 100644 (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;
index fba42b93527ae00051234295f354fa8cb9d9a095..90ec19c7b659c17d46d553444e9c467b35d03135 100644 (file)
@@ -146,7 +146,7 @@ int WXDLLEXPORT wxToupper(wxChar ch) { return (wxChar)CharUpper((LPTSTR)(ch)); }
 #endif
 
 #ifndef wxStrdup
-wxChar * WXDLLEXPORT wxStrdup(const wxChar *psz)
+WXDLLEXPORT wxChar * wxStrdup(const wxChar *psz)
 {
   size_t size = (wxStrlen(psz) + 1) * sizeof(wxChar);
   wxChar *ret = (wxChar *) malloc(size);
@@ -168,7 +168,7 @@ int WXDLLEXPORT wxStricmp(const wxChar *psz1, const wxChar *psz2)
 #endif
 
 #ifndef wxStrtok
-wxChar * WXDLLEXPORT wxStrtok(wxChar *psz, const wxChar *delim, wxChar **save_ptr)
+WXDLLEXPORT wxChar * wxStrtok(wxChar *psz, const wxChar *delim, wxChar **save_ptr)
 {
   if (!psz) psz = *save_ptr;
   psz += wxStrspn(psz, delim);