From: Vadim Zeitlin Date: Sun, 31 Mar 2013 01:12:08 +0000 (+0000) Subject: Fix the style value in wxWizard::Create() documentation. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/8526afcb2c7111282861fbdd9d18aa8fa21156bf?hp=ea3883dfbe2d5e68568ac8dd2640e17839925fa0 Fix the style value in wxWizard::Create() documentation. Somehow the raw value was used instead of the symbolic constant. Closes #15130. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73753 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/wizard.h b/interface/wx/wizard.h index 501815d41e..ca6287f53a 100644 --- a/interface/wx/wizard.h +++ b/interface/wx/wizard.h @@ -386,7 +386,7 @@ public: bool Create(wxWindow* parent, int id = wxID_ANY, const wxString& title = wxEmptyString, const wxBitmap& bitmap = wxNullBitmap, - const wxPoint& pos = wxDefaultPosition, long style = 536877056); + const wxPoint& pos = wxDefaultPosition, long style = wxDEFAULT_DIALOG_STYLE); /** This method is obsolete, use GetPageAreaSizer() instead.