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:
@@ -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
|
||||||
|
@@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
Reference in New Issue
Block a user