git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38485
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
//
// if either of the first 2 arguments is NULL, the conversion is supposed
// to fail
//
// if either of the first 2 arguments is NULL, the conversion is supposed
// to fail
- void DoTestConversion(const char *s, const wchar_t *w, wxCSConv& conv);
+ void DoTestConversion(const char *s, const wchar_t *w, wxMBConv& conv);
void
UnicodeTestCase::DoTestConversion(const char *s,
const wchar_t *ws,
void
UnicodeTestCase::DoTestConversion(const char *s,
const wchar_t *ws,
{
#if wxUSE_UNICODE
if ( ws )
{
#if wxUSE_UNICODE
if ( ws )
{
const StringConversionData& d = utf7data[n];
DoTestConversion(d.str, d.wcs, conv);
{
const StringConversionData& d = utf7data[n];
DoTestConversion(d.str, d.wcs, conv);
+ DoTestConversion(d.str, d.wcs, wxConvUTF7);
{
const StringConversionData& d = utf8data[n];
DoTestConversion(d.str, d.wcs, conv);
{
const StringConversionData& d = utf8data[n];
DoTestConversion(d.str, d.wcs, conv);
+ DoTestConversion(d.str, d.wcs, wxConvUTF8);