From: Václav Slavík Date: Wed, 23 Jun 2004 22:18:11 +0000 (+0000) Subject: compilation fix for gcc-3.4 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a430a60fd11fe5c7d555c53bc5415e8883c81473 compilation fix for gcc-3.4 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27986 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/mbconv/main.cpp b/tests/mbconv/main.cpp index 5eb0ecf30f..6c509c838d 100644 --- a/tests/mbconv/main.cpp +++ b/tests/mbconv/main.cpp @@ -60,7 +60,7 @@ void MBConvTestCase::WC2CP1250() } data[] = { { L"hello", "hello" }, // test that it works in simplest case - { L"½ of ½ is ¼", NULL }, // this should fail as cp1250 doesn't have 1/2 + { L"\xBD of \xBD is \xBC", NULL }, // this should fail as cp1250 doesn't have 1/2 }; wxCSConv cs1250(wxFONTENCODING_CP1250);