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
This commit is contained in:
Vadim Zeitlin 2007-03-18 14:56:05 +00:00
parent abbb59e8eb
commit fa3b08caf1

View File

@ -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 ?