Unicode compilation problems in the samples (patch from Dimitri)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15479 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-05-10 12:26:30 +00:00
parent ad6bd8701e
commit 4fce73fcaf
4 changed files with 11 additions and 11 deletions

View File

@@ -326,19 +326,19 @@ void MyFrame::MessageBox(wxCommandEvent& WXUNUSED(event) )
switch ( dialog.ShowModal() )
{
case wxID_YES:
wxLogStatus("You pressed \"Yes\"");
wxLogStatus(wxT("You pressed \"Yes\""));
break;
case wxID_NO:
wxLogStatus("You pressed \"No\"");
wxLogStatus(wxT("You pressed \"No\""));
break;
case wxID_CANCEL:
wxLogStatus("You pressed \"Cancel\"");
wxLogStatus(wxT("You pressed \"Cancel\""));
break;
default:
wxLogError("Unexpected wxMessageDialog return code!");
wxLogError(wxT("Unexpected wxMessageDialog return code!"));
}
}