]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/dialog.h
Add const to GetTargetSize()
[wxWidgets.git] / include / wx / gtk / dialog.h
index 883d33c52dbb8c29b32f71b2536381d9aeac4d0d..0269e17a235a23bd5cd87610fa4d32e175b413b9 100644 (file)
@@ -45,13 +45,7 @@ public:
             const wxSize &size = wxDefaultSize,
             long style = wxDEFAULT_DIALOG_STYLE,
             const wxString &name = wxDialogNameStr );
-    ~wxDialog() {}
-
-    void OnApply( wxCommandEvent &event );
-    void OnCancel( wxCommandEvent &event );
-    void OnOK( wxCommandEvent &event );
-    void OnPaint( wxPaintEvent& event );
-    void OnCloseWindow( wxCloseEvent& event );
+    virtual ~wxDialog() {}
 
     virtual bool Show( bool show = TRUE );
     virtual int ShowModal();
@@ -64,12 +58,10 @@ public:
 
     bool       m_modalShowing;
 
-protected:
+private:
     // common part of all ctors
     void Init();
 
-private:
-    DECLARE_EVENT_TABLE()
     DECLARE_DYNAMIC_CLASS(wxDialog)
 };