#if wxUSE_WCHAR_T
void StringTestCase::ConstructorsWithConversion()
{
- // Déj`a in UTF-8 and wchar_t:
- const char utf8[] = {0x44,0xC3,0xA9,0x6A,0xC3,0xA0,0};
+ // the string "Déjà" in UTF-8 and wchar_t:
+ const unsigned char utf8Buf[] = {0x44,0xC3,0xA9,0x6A,0xC3,0xA0,0};
const wchar_t wchar[] = {0x44,0xE9,0x6A,0xE0,0};
- const char utf8sub[] = {0x44,0xC3,0xA9,0x6A,0}; // "Dej"
+ const unsigned char utf8subBuf[] = {0x44,0xC3,0xA9,0x6A,0}; // just "Déj"
+ const char *utf8 = (char *)utf8Buf;
+ const char *utf8sub = (char *)utf8subBuf;
wxString s1(utf8, wxConvUTF8);
wxString s2(wchar, wxConvUTF8);
void StringTestCase::TokenizerGetPosition()
{
DoTokenizerGetPosition(_T("foo"), _T("_"), 3, 0);
- DoTokenizerGetPosition(_T("foo_bar"), _T("_"), 3, 7, 0);
- DoTokenizerGetPosition(_T("foo_bar_"), _T("_"), 3, 7,8, 0);
+ DoTokenizerGetPosition(_T("foo_bar"), _T("_"), 4, 7, 0);
+ DoTokenizerGetPosition(_T("foo_bar_"), _T("_"), 4, 8, 0);
}
void StringTestCase::Replace()