X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9b11752c4f9e1fd4b11ba3d184246267facb3ad3..db890987c6b04da48b0f4b2523c74aa4227bc04a:/include/wx/choicebk.h diff --git a/include/wx/choicebk.h b/include/wx/choicebk.h index 46014cc251..76a0387392 100644 --- a/include/wx/choicebk.h +++ b/include/wx/choicebk.h @@ -70,7 +70,6 @@ public: virtual wxString GetPageText(size_t n) const; virtual int GetPageImage(size_t n) const; virtual bool SetPageImage(size_t n, int imageId); - virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const; virtual bool InsertPage(size_t n, wxWindow *page, const wxString& text, @@ -91,13 +90,10 @@ protected: virtual wxWindow *DoRemovePage(size_t page); - // get the size which the choice control should have - virtual wxSize GetControllerSize() const; - void UpdateSelectedPage(size_t newsel) { m_selection = static_cast(newsel); - GetChoiceCtrl()->Select(newsel); + GetChoiceCtrl()->Select(m_selection); } wxBookCtrlEvent* CreatePageChangingEvent() const;