X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/13a7abf97312d2e9427898f3432eb9214f09427f..e4e84ccdb69bff1b2580a6b685c7a51559388364:/include/wx/msgdlg.h

diff --git a/include/wx/msgdlg.h b/include/wx/msgdlg.h
index 2b0ba33db2..0223e29115 100644
--- a/include/wx/msgdlg.h
+++ b/include/wx/msgdlg.h
@@ -5,8 +5,10 @@
 
 #if wxUSE_MSGDLG
 
-#if defined(__WXUNIVERSAL__)
+#if defined(__WXUNIVERSAL__) || defined(__WXGPE__)
 #include "wx/generic/msgdlgg.h"
+#elif defined(__WXPALMOS__)
+#include "wx/palmos/msgdlg.h"
 #elif defined(__WXMSW__)
 #include "wx/msw/msgdlg.h"
 #elif defined(__WXMOTIF__)
@@ -17,6 +19,8 @@
 #include "wx/generic/msgdlgg.h"
 #elif defined(__WXMAC__)
 #include "wx/mac/msgdlg.h"
+#elif defined(__WXCOCOA__)
+#include "wx/generic/msgdlgg.h"
 #elif defined(__WXPM__)
 #include "wx/os2/msgdlg.h"
 #endif
@@ -29,7 +33,7 @@ int WXDLLEXPORT wxMessageBox(const wxString& message,
                             const wxString& caption = wxMessageBoxCaptionStr,
                             long style = wxOK | wxCENTRE,
                             wxWindow *parent = NULL,
-                            int x = -1, int y = -1);
+                            int x = wxDefaultCoord, int y = wxDefaultCoord);
 
 #endif // wxUSE_MSGDLG