Unicode compilation fixes (patch from Dimitri)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14822 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-03-27 18:45:20 +00:00
parent 4ccf704abd
commit f565a6c2f4
10 changed files with 385 additions and 301 deletions

View File

@@ -293,9 +293,9 @@ void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{
wxMessageBox(_T("Event sample shows different ways of using events\n"
"<EFBFBD> 2001 Vadim Zeitlin"),
_T("About Event Sample"), wxOK | wxICON_INFORMATION, this);
wxMessageBox( wxT("Event sample shows different ways of using events\n")
wxT("<EFBFBD> 2001 Vadim Zeitlin"),
wxT("About Event Sample"), wxOK | wxICON_INFORMATION, this );
}
// ----------------------------------------------------------------------------
@@ -304,9 +304,12 @@ void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
void MyFrame::OnDynamic(wxCommandEvent& WXUNUSED(event))
{
wxMessageBox(_T("This is a dynamic event handler which can be connected "
"and disconnected during run-time."),
_T("Dynamic Event Handler"), wxOK | wxICON_INFORMATION, this);
wxMessageBox
(
wxT("This is a dynamic event handler which can be connected ")
wxT("and disconnected at run-time."),
wxT("Dynamic Event Handler"), wxOK | wxICON_INFORMATION, this
);
}
void MyFrame::OnConnect(wxCommandEvent& event)