X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e5b507581053d7a11b5c1419dc3ac5c31904236b..9d5507f7a2701395e1d5c121bd877bb9066ee6ea:/src/palmos/msgdlg.cpp?ds=inline diff --git a/src/palmos/msgdlg.cpp b/src/palmos/msgdlg.cpp index 63aa1bdd04..bde9907eb2 100644 --- a/src/palmos/msgdlg.cpp +++ b/src/palmos/msgdlg.cpp @@ -9,38 +9,24 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma implementation "msgdlg.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" #ifdef __BORLANDC__ -#pragma hdrstop + #pragma hdrstop #endif #ifndef WX_PRECOMP #include "wx/app.h" - #include "wx/defs.h" #include "wx/utils.h" #include "wx/dialog.h" #include "wx/msgdlg.h" #endif -IMPLEMENT_CLASS(wxMessageDialog, wxDialog) +#include +#include -wxMessageDialog::wxMessageDialog(wxWindow *parent, - const wxString& message, - const wxString& caption, - long style, - const wxPoint& WXUNUSED(pos)) -{ - m_caption = caption; - m_message = message; - m_parent = parent; - SetMessageDialogStyle(style); -} +IMPLEMENT_CLASS(wxMessageDialog, wxDialog) int wxMessageDialog::ShowModal() { @@ -113,7 +99,7 @@ int wxMessageDialog::ShowModal() DmReleaseResource(AlertHandle); // Display the dialog - Result=FrmCustomAlert(AppDB,AlertID,m_message.c_str(),"",""); + Result=FrmCustomAlert(AppDB,AlertID,GetFullMessage().c_str(),"",""); // Convert the Palm OS result to wxResult if(AlertID<1100) @@ -150,4 +136,3 @@ int wxMessageDialog::ShowModal() return wxResult; } -