]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/datetime.cpp
better attempts to try .utf-8 suffix
[wxWidgets.git] / src / common / datetime.cpp
index 6c87ccc2368bcd26bbe23989e9afca0d9930d582..ac737d6322f9f85c2327859c94d1bd5c647c4c93 100644 (file)
@@ -2668,7 +2668,7 @@ const wxChar *wxDateTime::ParseFormat(const wxChar *date,
 
         // parse the optional width
         size_t width = 0;
-        while ( isdigit(*++fmt) )
+        while ( wxIsdigit(*++fmt) )
         {
             width *= 10;
             width += *fmt - _T('0');