wxUSE_STL fixes and suggested coding of -1/TRUE/FALSE

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28542 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-07-30 15:28:32 +00:00
parent 22800f325f
commit c7f8ebf848
5 changed files with 42 additions and 42 deletions

View File

@@ -103,9 +103,9 @@ bool MyApp::OnInit(void)
#endif
// Create the main frame window
frame = new MyFrame( (wxFrame *) NULL, -1,
frame = new MyFrame( (wxFrame *) NULL, wxID_ANY,
wxT("wxWidgets Resource Sample"),
wxPoint(-1, -1), wxSize(300, 250) );
wxDefaultPosition, wxSize(300, 250) );
#if wxUSE_STATUSBAR
// Give it a status line
@@ -118,13 +118,13 @@ bool MyApp::OnInit(void)
frame->SetMenuBar(menu_bar);
// Make a panel
frame->panel = new MyPanel( frame, -1, wxPoint(0, 0), wxSize(400, 400),
frame->panel = new MyPanel( frame, wxID_ANY, wxPoint(0, 0), wxSize(400, 400),
0, wxT("MyMainFrame") );
frame->Show(TRUE);
frame->Show(true);
SetTopWindow(frame);
return TRUE;
return true;
}
MyApp::~MyApp()
@@ -181,7 +181,7 @@ void MyFrame::OnAbout( wxCommandEvent& WXUNUSED(event) )
void MyFrame::OnQuit( wxCommandEvent& WXUNUSED(event) )
{
Close(TRUE);
Close(true);
}
void MyFrame::OnTestDialog(wxCommandEvent& WXUNUSED(event) )
@@ -199,7 +199,7 @@ void MyFrame::OnTestDialog(wxCommandEvent& WXUNUSED(event) )
dialog->ShowModal();
}
dialog->Close(TRUE);
dialog->Close(true);
}
BEGIN_EVENT_TABLE(MyDialog, wxDialog)