X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4b614012dae717f50893334520785e18e9b302c2..6344162a81f74b3fbab0803405eebc0c0b83e797:/samples/event/event.cpp diff --git a/samples/event/event.cpp b/samples/event/event.cpp index 1f63f7efd1..beeaad030d 100644 --- a/samples/event/event.cpp +++ b/samples/event/event.cpp @@ -17,7 +17,7 @@ // headers // ---------------------------------------------------------------------------- -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(__APPLE__) // DO NOT use event.cpp here, it breaks statics initialization in // src/common/event.cpp and nothing works at all then! #pragma implementation "eventsample.cpp" @@ -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" - "© 2001 Vadim Zeitlin"), - _T("About Event Sample"), wxOK | wxICON_INFORMATION, this); + wxMessageBox( wxT("Event sample shows different ways of using events\n") + wxT("© 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)