X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e5b507581053d7a11b5c1419dc3ac5c31904236b..09138926b1f93bcc8c13f8b0429e96e0d929bf08:/src/os2/msgdlg.cpp diff --git a/src/os2/msgdlg.cpp b/src/os2/msgdlg.cpp index 1c7e16b39b..90d433a089 100644 --- a/src/os2/msgdlg.cpp +++ b/src/os2/msgdlg.cpp @@ -9,21 +9,17 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -#pragma implementation "msgdlg.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" -#ifndef WX_PRECOMP -#include -#include "wx/defs.h" -#include "wx/utils.h" -#include "wx/dialog.h" -#include "wx/app.h" #include "wx/msgdlg.h" -#include "wx/math.h" + +#ifndef WX_PRECOMP + #include + #include "wx/utils.h" + #include "wx/dialog.h" + #include "wx/app.h" + #include "wx/math.h" #endif #include "wx/os2/private.h" @@ -36,13 +32,11 @@ 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; @@ -138,4 +132,3 @@ int wxMessageDialog::ShowModal() } return nAns; } // end of wxMessageDialog::ShowModal -