// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
+/**
+ Default message box caption string.
+*/
+const char wxMessageBoxCaptionStr[] = "Message";
+
+
/**
@class wxMessageDialog
@header{wx/msgdlg.h}
*/
int wxMessageBox(const wxString& message,
- const wxString& caption = "Message",
- int style = wxOK,
+ const wxString& caption = wxMessageBoxCaptionStr,
+ int style = wxOK | wxCENTRE,
wxWindow* parent = NULL,
int x = wxDefaultCoord,
int y = wxDefaultCoord);