X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3db7220e05a2197d27adf72ce5e52a037fe49670..8c9f8f91cd62335261ee29762747218f28d129de:/include/wx/gtk1/msgdlg.h diff --git a/include/wx/gtk1/msgdlg.h b/include/wx/gtk1/msgdlg.h index 1f142a6dce..edcfcedbf4 100644 --- a/include/wx/gtk1/msgdlg.h +++ b/include/wx/gtk1/msgdlg.h @@ -1,12 +1,12 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: msgdlg.h +// Name: wx/gtk/msgdlg.h // Purpose: wxMessageDialog for GTK+2 // Author: Vaclav Slavik // Modified by: // Created: 2003/02/28 // RCS-ID: $Id$ // Copyright: (c) Vaclav Slavik, 2003 -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef __MSGDLG_H__ @@ -24,13 +24,14 @@ WXDLLEXPORT_DATA(extern const wxChar*) wxMessageBoxCaptionStr; -class WXDLLEXPORT wxMessageDialog: public wxDialog +class WXDLLEXPORT wxMessageDialog: public wxDialog, public wxMessageDialogBase { public: wxMessageDialog(wxWindow *parent, const wxString& message, const wxString& caption = wxMessageBoxCaptionStr, long style = wxOK|wxCENTRE, const wxPoint& pos = wxDefaultPosition); + ~wxMessageDialog(); int ShowModal(); virtual bool Show( bool WXUNUSED(show) = true ) { return false; }; @@ -47,7 +48,6 @@ protected: private: wxString m_caption; wxString m_message; - long m_dialogStyle; DECLARE_DYNAMIC_CLASS(wxMessageDialog) };