From: Vadim Zeitlin Date: Sun, 18 Mar 2007 14:56:05 +0000 (+0000) Subject: fix the run-time behaviour after the last compilation fixing patch X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fa3b08caf17a6310540d623b6ce508c201efb9a5 fix the run-time behaviour after the last compilation fixing patch git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44891 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/regex/regextest.cpp b/tests/regex/regextest.cpp index 99afd5d50e..8988557568 100644 --- a/tests/regex/regextest.cpp +++ b/tests/regex/regextest.cpp @@ -323,7 +323,7 @@ wxString RegExTestCase::quote(const wxString& arg) wxString str; for (size_t i = 0; i < arg.length(); i++) { - wxChar ch = arg[i]; + wxUChar ch = (wxChar)arg[i]; const wxChar *p = wxStrchr(needEscape, ch); if (p) @@ -331,7 +331,7 @@ wxString RegExTestCase::quote(const wxString& arg) else if (wxIscntrl(ch)) str += wxString::Format(_T("\\%03o"), ch); else - str += ch; + str += (wxChar)ch; } return str.length() == arg.length() && str.find(' ') == wxString::npos ?