]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/msgdlg.h
Source cleaning: whitespaces & tabs, ::, TRUE/true, FALSE/false.
[wxWidgets.git] / include / wx / gtk1 / msgdlg.h
index 6e74529d83471c9c12f04d32a33897e4df84aee3..7ca2daea90ed5e0d94c2616499fd970e2e27a302 100644 (file)
@@ -33,12 +33,20 @@ public:
                     const wxPoint& pos = wxDefaultPosition);
 
     int ShowModal();
+    virtual bool Show( bool show = true ) { return false; };
+
+protected:
+    // implement some base class methods to do nothing to avoid asserts and
+    // GTK warnings, since this is not a real wxDialog.
+    virtual void DoSetSize(int x, int y,
+                           int width, int height,
+                           int sizeFlags = wxSIZE_AUTO) {}
+    virtual void DoMoveWindow(int x, int y, int width, int height) {}
 
 private:
     wxString m_caption;
     wxString m_message;
     long m_dialogStyle;
-    wxWindow *m_parent;
 
     DECLARE_DYNAMIC_CLASS(wxMessageDialog)
 };