X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2a1f999fafa4312ccd47b7be65c672c2220fea36..0e41582e529b14dab0f6da62451b133b85227176:/samples/typetest/typetest.cpp diff --git a/samples/typetest/typetest.cpp b/samples/typetest/typetest.cpp index 38133d498f..8a22895fc1 100644 --- a/samples/typetest/typetest.cpp +++ b/samples/typetest/typetest.cpp @@ -9,10 +9,6 @@ // Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -#pragma implementation "typetest.h" -#endif - // For compilers that support precompilation, includes "wx/wx.h". #include "wx/wxprec.h" @@ -889,7 +885,7 @@ void MyApp::DoUnicodeDemo(wxCommandEvent& WXUNUSED(event)) textCtrl << _T("\nTest wchar_t to char (Unicode to ANSI/Multibyte) converions:"); wxString str; - str = _T("Robert Röbling\n"); + str = _T("Robert R\366bling\n"); printf( "\n\nConversion with wxConvLocal:\n" ); wxConvCurrent = &wxConvLocal; @@ -955,13 +951,13 @@ void MyApp::DoMIMEDemo(wxCommandEvent& WXUNUSED(event)) wxFileType::MessageParameters params(filename, type); filetype->GetOpenCommand(&open, params); - textCtrl << _T("MIME information about extension '") << ext << _T("'\n") + textCtrl << _T("MIME information about extension '") << ext << _T('\n') << _T("\tMIME type: ") << ( !type ? wxT("unknown") - : type.c_str() ) << '\n' + : type.c_str() ) << _T('\n') << _T("\tDescription: ") << ( !desc ? wxEmptyString : desc.c_str() ) - << '\n' + << _T('\n') << _T("\tCommand to open: ") << ( !open ? wxT("no") : open.c_str() ) - << '\n'; + << _T('\n'); delete filetype; }