X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/63ec432bd7b9c93961e85e871bcb31758364a634..0a7ee6e0f400f0d10b158bc0396be22f59d6ad8f:/include/wx/motif/msgdlg.h diff --git a/include/wx/motif/msgdlg.h b/include/wx/motif/msgdlg.h index 12e013922c..814a071c1c 100644 --- a/include/wx/motif/msgdlg.h +++ b/include/wx/motif/msgdlg.h @@ -13,38 +13,32 @@ #ifndef _WX_MSGBOXDLG_H_ #define _WX_MSGBOXDLG_H_ -#include "wx/setup.h" -#include "wx/dialog.h" - // ---------------------------------------------------------------------------- // Message box dialog // ---------------------------------------------------------------------------- -WXDLLEXPORT_DATA(extern const wxChar) wxMessageBoxCaptionStr[]; - -class WXDLLEXPORT wxMessageDialog: public wxDialog, public wxMessageDialogBase +class WXDLLIMPEXP_CORE wxMessageDialog : public wxMessageDialogBase { - DECLARE_DYNAMIC_CLASS(wxMessageDialog) - public: wxMessageDialog(wxWindow *parent, - const wxString& message, - const wxString& caption = wxMessageBoxCaptionStr, - long style = wxOK | wxCENTRE, - const wxPoint& pos = wxDefaultPosition); + const wxString& message, + const wxString& caption = wxMessageBoxCaptionStr, + long style = wxOK | wxCENTRE, + const wxPoint& WXUNUSED(pos) = wxDefaultPosition) + : wxMessageDialogBase(parent, message, caption, style) + { + } - int ShowModal(); + virtual int ShowModal(); // implementation only from now on // called by the Motif callback void SetResult(long result) { m_result = result; } protected: - wxString m_caption; - wxString m_message; - wxWindow * m_parent; long m_result; + + DECLARE_DYNAMIC_CLASS(wxMessageDialog) }; -#endif -// _WX_MSGBOXDLG_H_ +#endif // _WX_MSGBOXDLG_H_