]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/msgdlg.h
Document wxWindow::Close() return value.
[wxWidgets.git] / interface / wx / msgdlg.h
index 5d2d37361a3633d280f5d85c816c5a1473635709..1dde94ee778c7eb8816bcb03b5edfe5ace2e67c1 100644 (file)
@@ -6,6 +6,12 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
+/**
+    Default message box caption string.
+*/
+const char wxMessageBoxCaptionStr[] = "Message";
+
+
 /**
     @class wxMessageDialog
 
@@ -314,8 +320,8 @@ public:
     @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);