use wxHAVE_U_ESCAPE to accomodate old compilers
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38476 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
8da7a00a94
commit
ed177375b2
1 changed files with 5 additions and 0 deletions
|
|
@ -171,9 +171,11 @@ void TextFileTestCase::ReadUTF8()
|
|||
CPPUNIT_ASSERT_EQUAL( 2u, f.GetLineCount() );
|
||||
CPPUNIT_ASSERT_EQUAL( wxTextFileType_Unix, f.GetLineType(0) );
|
||||
CPPUNIT_ASSERT_EQUAL( wxTextFileType_None, f.GetLineType(1) );
|
||||
#if wxHAVE_U_ESCAPE
|
||||
CPPUNIT_ASSERT_EQUAL( wxString(L"\u041f"), f.GetFirstLine() );
|
||||
CPPUNIT_ASSERT_EQUAL( wxString(L"\u0440\u0438\u0432\u0435\u0442"),
|
||||
f.GetLastLine() );
|
||||
#endif // wxHAVE_U_ESCAPE
|
||||
}
|
||||
|
||||
void TextFileTestCase::ReadUTF16()
|
||||
|
|
@ -189,9 +191,12 @@ void TextFileTestCase::ReadUTF16()
|
|||
CPPUNIT_ASSERT_EQUAL( 2u, f.GetLineCount() );
|
||||
CPPUNIT_ASSERT_EQUAL( wxTextFileType_Dos, f.GetLineType(0) );
|
||||
CPPUNIT_ASSERT_EQUAL( wxTextFileType_None, f.GetLineType(1) );
|
||||
|
||||
#if wxHAVE_U_ESCAPE
|
||||
CPPUNIT_ASSERT_EQUAL( wxString(L"\u041f"), f.GetFirstLine() );
|
||||
CPPUNIT_ASSERT_EQUAL( wxString(L"\u0440\u0438\u0432\u0435\u0442"),
|
||||
f.GetLastLine() );
|
||||
#endif // wxHAVE_U_ESCAPE
|
||||
}
|
||||
|
||||
#endif // wxUSE_UNICODE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue