X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e90c1d2a19361551eb07778280f22be3e759cf64..892b89f3b79a756ba3c278c605b79a6fa377d60f:/include/wx/wizard.h diff --git a/include/wx/wizard.h b/include/wx/wizard.h index c67c89de87..1d30123a5e 100644 --- a/include/wx/wizard.h +++ b/include/wx/wizard.h @@ -81,7 +81,7 @@ public: static void Chain(wxWizardPageSimple *first, wxWizardPageSimple *second) { wxCHECK_RET( first && second, - T("NULL passed to wxWizardPageSimple::Chain") ); + wxT("NULL passed to wxWizardPageSimple::Chain") ); first->SetNext(second); second->SetPrev(first); @@ -121,6 +121,10 @@ public: // get the current page (NULL if RunWizard() isn't running) virtual wxWizardPage *GetCurrentPage() const = 0; + + // get the size available for the page: the wizards are not resizeable, so + // this size doesn't change + virtual wxSize GetPageSize() const = 0; }; // include the real class declaration