use hex escapes instead of 8 bit characaters (#10105)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56495 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
474207cae4
commit
6c58cd78a5
@ -177,10 +177,10 @@ void XLocaleTestCase::TestCtypeFunctions()
|
||||
|
||||
TestCtypeFunctionsWith(locFR);
|
||||
|
||||
CPPUNIT_ASSERT( wxIsalpha_l('é', locFR) );
|
||||
CPPUNIT_ASSERT( wxIslower_l('é', locFR) );
|
||||
CPPUNIT_ASSERT( !wxIslower_l('É', locFR) );
|
||||
CPPUNIT_ASSERT( wxIsupper_l('É', locFR) );
|
||||
CPPUNIT_ASSERT( wxIsalpha_l('\xe9', locFR) );
|
||||
CPPUNIT_ASSERT( wxIslower_l('\xe9', locFR) );
|
||||
CPPUNIT_ASSERT( !wxIslower_l('\xc9', locFR) );
|
||||
CPPUNIT_ASSERT( wxIsupper_l('\xc9', locFR) );
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user