]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/layout/layout.h
compile fix
[wxWidgets.git] / samples / layout / layout.h
index 14bbd7a502df21d9665782704d552aee2ef9360c..7aad45fd8244a232e5dd5c06a8c230d203f78014 100644 (file)
@@ -33,7 +33,6 @@ class MyFrame: public wxFrame
 
     void LoadFile(wxCommandEvent& event);
     void Quit(wxCommandEvent& event);
-    void TestSizers(wxCommandEvent& event);
     void TestNewSizers(wxCommandEvent& event);
     void About(wxCommandEvent& event);
 
@@ -62,25 +61,12 @@ class MyWindow: public wxWindow
     DECLARE_EVENT_TABLE()
 };
 
-class SizerFrame: public wxFrame
-{
-  public:
-    wxPanel *panel;
-    SizerFrame(wxFrame *frame, char *title, int x, int y, int w, int h);
-    void OnSize(wxSizeEvent& event);
-
-   DECLARE_EVENT_TABLE()
-};
-
 class NewSizerFrame: public wxFrame
 {
   public:
     wxPanel *panel;
-    wxNewSizer *topsizer;
     NewSizerFrame(wxFrame *frame, char *title, int x, int y );
-    void OnSize(wxSizeEvent& event);
-
-   DECLARE_EVENT_TABLE()
+    
 };
 
 #define LAYOUT_QUIT       100