]> git.saurik.com Git - wxWidgets.git/commitdiff
changing to iterator
authorStefan Csomor <csomor@advancedconcepts.ch>
Thu, 26 Mar 2009 20:38:43 +0000 (20:38 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Thu, 26 Mar 2009 20:38:43 +0000 (20:38 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59878 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/datetimefmt.cpp

index c0bfdf5d55759eba0970b75cb63de2e7be5ad19d..aa0dd5c83e55f3d77297cdbc2614138845eabfb9 100644 (file)
@@ -1078,7 +1078,7 @@ static wxString TranslateFromUnicodeFormat( const wxString& fmt)
 
     wxChar chLast = _T('\0');
     size_t lastCount = 0;
-    for ( const wxChar *p = fmt; /* NUL handled inside */; p++ )
+    for ( wxString::const_iterator p = fmt.begin(); /* NUL handled inside */; p++ )
     {
         if ( *p == chLast )
         {
@@ -1086,7 +1086,7 @@ static wxString TranslateFromUnicodeFormat( const wxString& fmt)
             continue;
         }
 
-        switch ( *p )
+        switch ( (char) *p )
         {
             // these characters come in groups, start counting them
             case _T('d'):