// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
-#pragma implementation "msgdlg.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
IMPLEMENT_CLASS(wxMessageDialog, wxDialog)
-wxMessageDialog::wxMessageDialog(
- wxWindow* pParent
-, const wxString& rsMessage
-, const wxString& rsCaption
-, long lStyle
-, const wxPoint& pPos
-)
+wxMessageDialog::wxMessageDialog( wxWindow* WXUNUSED(pParent),
+ const wxString& rsMessage,
+ const wxString& rsCaption,
+ long lStyle,
+ const wxPoint& WXUNUSED(pPos) )
{
m_sCaption = rsCaption;
m_sMessage = rsMessage;
}
return nAns;
} // end of wxMessageDialog::ShowModal
-