]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/mdi/mdi.h
added test for wxXmlResource::Unload()
[wxWidgets.git] / samples / mdi / mdi.h
index 89490a2af863b7bccb34d02076062dd715d623c7..d0d6c422e17c87d6cf3c36791de3ee26eb21013d 100644 (file)
@@ -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
 };