X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/12028905135250524409f1e7b9bfa9c55e5ce16b..1f30c17645c56f85178ee780fa330d954e45cea9:/include/wx/gtk/msgdlg.h diff --git a/include/wx/gtk/msgdlg.h b/include/wx/gtk/msgdlg.h index 6e74529d83..7ca2daea90 100644 --- a/include/wx/gtk/msgdlg.h +++ b/include/wx/gtk/msgdlg.h @@ -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) };