small fix to the code I just commited

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7310 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-04-28 14:19:47 +00:00
parent d7030ac6aa
commit 9215f35ef8
2 changed files with 4 additions and 3 deletions

View File

@@ -123,7 +123,8 @@ public:
int id = -1, int id = -1,
const wxString& title = wxEmptyString, const wxString& title = wxEmptyString,
const wxBitmap& bitmap = wxNullBitmap, const wxBitmap& bitmap = wxNullBitmap,
const wxPoint& pos = wxDefaultPosition); const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize);
// executes the wizard starting from the given page, returns TRUE if it was // executes the wizard starting from the given page, returns TRUE if it was
// successfully finished, FALSE if user cancelled it // successfully finished, FALSE if user cancelled it

View File

@@ -367,9 +367,9 @@ wxWizard *wxWizardBase::Create(wxWindow *parent,
const wxString& title, const wxString& title,
const wxBitmap& bitmap, const wxBitmap& bitmap,
const wxPoint& pos, const wxPoint& pos,
const wxSize& size) const wxSize& WXUNUSED(size))
{ {
return new wxWizard(parent, id, title, bitmap, pos, size); return new wxWizard(parent, id, title, bitmap, pos);
} }
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------