CreateMyMenuBar();
CreateStatusBar(1);
- SetStatusText( "Welcome!" );
+ SetStatusText( _T("Welcome!") );
// insert main window here
}
// WDR: handler implementations for MyFrame
-void MyFrame::OnTest( wxCommandEvent &event )
+void MyFrame::OnTest( wxCommandEvent &WXUNUSED(event) )
{
- MyDialog dialog( this, -1, "Test" );
+ MyDialog dialog( this, -1, _T("Test") );
dialog.ShowModal();
}
-void MyFrame::OnAbout( wxCommandEvent &event )
+void MyFrame::OnAbout( wxCommandEvent &WXUNUSED(event) )
{
- wxMessageDialog dialog( this, "Welcome to SuperApp 1.0\n(C)opyright Joe Hacker",
- "About SuperApp", wxOK|wxICON_INFORMATION );
+ wxMessageDialog dialog( this, _T("Welcome to SuperApp 1.0\n(C)opyright Joe Hacker"),
+ _T("About SuperApp"), wxOK|wxICON_INFORMATION );
dialog.ShowModal();
}
-void MyFrame::OnQuit( wxCommandEvent &event )
+void MyFrame::OnQuit( wxCommandEvent &WXUNUSED(event) )
{
Close( TRUE );
}
-void MyFrame::OnCloseWindow( wxCloseEvent &event )
+void MyFrame::OnCloseWindow( wxCloseEvent &WXUNUSED(event) )
{
// if ! saved changes -> return
bool MyApp::OnInit()
{
- MyFrame *frame = new MyFrame( NULL, -1, "SuperApp", wxPoint(20,20), wxSize(500,340) );
+ MyFrame *frame = new MyFrame( NULL, -1, _T("SuperApp"), wxPoint(20,20), wxSize(500,340) );
frame->Show( TRUE );
return TRUE;