]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/msgdlgg.h
wxGLCanvas works again
[wxWidgets.git] / include / wx / generic / msgdlgg.h
index 724d4c6e9d8c6d1926de5ba08ae2306b4ce79bdd..6f7401a21778f991d8368d93ddff30811b38800e 100644 (file)
@@ -22,7 +22,7 @@
 // type is an 'or' (|) of wxOK, wxCANCEL, wxYES_NO
 // Returns wxYES/NO/OK/CANCEL
 
-WXDLLEXPORT_DATA(extern const char*) wxMessageBoxCaptionStr;
+WXDLLEXPORT_DATA(extern const wxChar*) wxMessageBoxCaptionStr;
 
 class WXDLLEXPORT wxGenericMessageDialog: public wxDialog
 {
@@ -40,11 +40,11 @@ public:
 DECLARE_EVENT_TABLE()
 };
 
-#ifndef __WXMSW__
+#if !defined( __WXMSW__ ) && !defined( __WXMAC__)
 #define wxMessageDialog wxGenericMessageDialog
 
 int wxMessageBox(const wxString& message, const wxString& caption = wxMessageBoxCaptionStr, 
-  long style = wxOK|wxCENTRE, wxWindow *parent = NULL, int x = -1, int y = -1);
+  long style = wxOK|wxCENTRE, wxWindow *parent = (wxWindow *) NULL, int x = -1, int y = -1);
 
 #endif