Added wxUSE_MENUS to setup0.h to make menu sample compile;

updated some makefiles


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10558 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2001-06-13 12:45:31 +00:00
parent 35d764b08c
commit 4d2c67a9da
8 changed files with 27 additions and 4 deletions

View File

@@ -18,8 +18,8 @@
// ----------------------------------------------------------------------------
#ifdef __GNUG__
#pragma implementation "minimal.cpp"
#pragma interface "minimal.cpp"
#pragma implementation "erase.cpp"
#pragma interface "erase.cpp"
#endif
// For compilers that support precompilation, includes "wx/wx.h".
@@ -157,10 +157,10 @@ void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{
wxString msg;
msg.Printf( _T("This is the about dialog of minimal sample.\n")
msg.Printf( _T("This is the about dialog of tghe Erase sample.\n")
_T("Welcome to %s"), wxVERSION_STRING);
wxMessageBox(msg, "About Minimal", wxOK | wxICON_INFORMATION, this);
wxMessageBox(msg, "About Erase", wxOK | wxICON_INFORMATION, this);
}