]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/tokenzr.cpp
Crude hack to enable PageUp/DownKeys when controlbar is enabled.
[wxWidgets.git] / src / common / tokenzr.cpp
index b22a79ba2650e3d8625da91ffca41f5277cd86be..837243cac6c575a1534e733a9147adc77295761f 100644 (file)
@@ -39,7 +39,7 @@ off_t wxStringTokenizer::FindDelims(const wxString& str, const wxString& delims)
 {
     for ( size_t i = 0; i < str.Length(); i++ )
     {
-        char c = str[i];
+        wxChar c = str[i];
 
         for ( size_t j = 0; j < delims.Length() ; j++ )
         {