X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fa762db4edf914f5e834c799de0c2e0d840cf86c..0e41582e529b14dab0f6da62451b133b85227176:/samples/mdi/mdi.h diff --git a/samples/mdi/mdi.h b/samples/mdi/mdi.h index e7d50b8de1..d0d6c422e1 100644 --- a/samples/mdi/mdi.h +++ b/samples/mdi/mdi.h @@ -5,11 +5,11 @@ // Modified by: // Created: 04/01/98 // RCS-ID: $Id$ -// Copyright: (c) Julian Smart and Markus Holzem +// Copyright: (c) Julian Smart // Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// -#include +#include "wx/toolbar.h" // Define a new application class MyApp : public wxApp @@ -58,7 +58,7 @@ class MyChild: public wxMDIChildFrame { public: MyCanvas *canvas; - MyChild(wxMDIParentFrame *parent, const wxString& title, const wxPoint& pos, const wxSize& size, const long style); + MyChild(wxMDIParentFrame *parent, const wxString& title); ~MyChild(); void OnActivate(wxActivateEvent& event); @@ -79,12 +79,12 @@ public: // menu items ids enum { - MDI_QUIT = 100, - MDI_NEW_WINDOW, + MDI_QUIT = wxID_EXIT, + MDI_NEW_WINDOW = 101, MDI_REFRESH, MDI_CHANGE_TITLE, MDI_CHANGE_POSITION, MDI_CHANGE_SIZE, MDI_CHILD_QUIT, - MDI_ABOUT + MDI_ABOUT = wxID_ABOUT };