]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/choicebk.h
Fix VC6 compilation by changing the order of assignment operators in wxAny
[wxWidgets.git] / include / wx / choicebk.h
index 46014cc251c8a978d1399b90d3128c77626648b6..76a03873926c82589ceaa2daac321825f8f14cf0 100644 (file)
@@ -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<int>(newsel);
-        GetChoiceCtrl()->Select(newsel);
+        GetChoiceCtrl()->Select(m_selection);
     }
 
     wxBookCtrlEvent* CreatePageChangingEvent() const;