Minor fixes to wxMessageBox() documentation.

Correct the default parameters values.

Closes #14043.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70689 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-02-25 23:49:42 +00:00
parent 0f4bf6ac80
commit fe9b56985f

View File

@@ -314,8 +314,8 @@ public:
@header{wx/msgdlg.h} @header{wx/msgdlg.h}
*/ */
int wxMessageBox(const wxString& message, int wxMessageBox(const wxString& message,
const wxString& caption = "Message", const wxString& caption = wxMessageBoxCaptionStr,
int style = wxOK, int style = wxOK | wxCENTRE,
wxWindow* parent = NULL, wxWindow* parent = NULL,
int x = wxDefaultCoord, int x = wxDefaultCoord,
int y = wxDefaultCoord); int y = wxDefaultCoord);