]> git.saurik.com Git - wxWidgets.git/commitdiff
Changed function to SetFitToCurrentPage
authorJulian Smart <julian@anthemion.co.uk>
Mon, 6 Feb 2006 17:51:11 +0000 (17:51 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Mon, 6 Feb 2006 17:51:11 +0000 (17:51 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37356 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/bookctrl.h
src/common/bookctrl.cpp
src/generic/propdlg.cpp

index ea8784a5db03c4758882ff04cc211a83ede184f4..5d09ad2d9a06acce8233943b80abe5f812d4f371 100644 (file)
@@ -132,8 +132,8 @@ public:
     bool IsVertical() const { return HasFlag(wxBK_BOTTOM | wxBK_TOP); }
 
     // set/get option to shrink to fit current page
-    void SetShrinkMode(bool shrink) { m_shrinkToFit = shrink; }
-    bool GetShrinkMode() const { return m_shrinkToFit; }
+    void SetFitToCurrentPage(bool fit) { m_fitToCurrentPage = fit; }
+    bool GetFitToCurrentPage() const { return m_fitToCurrentPage; }
 
     // operations
     // ----------
@@ -234,7 +234,7 @@ protected:
     wxControl *m_bookctrl;
 
     // Whether to shrink to fit current page
-    bool m_shrinkToFit;
+    bool m_fitToCurrentPage;
 
 private:
 
index b0a8dea974e337974cc2564a21c9435fc86d51fd..f22559cb9857d9094d7df8e07e8b716e7c40721b 100644 (file)
@@ -53,7 +53,7 @@ void wxBookCtrlBase::Init()
     m_bookctrl = NULL;
     m_imageList = NULL;
     m_ownsImageList = false;
-    m_shrinkToFit = false;
+    m_fitToCurrentPage = false;
 
 #if defined(__WXWINCE__)
     m_internalBorder = 1;
@@ -145,7 +145,7 @@ wxSize wxBookCtrlBase::DoGetBestSize() const
         }
     }
     
-    if (m_shrinkToFit && GetCurrentPage())
+    if (m_fitToCurrentPage && GetCurrentPage())
         bestSize = GetCurrentPage()->GetBestSize();
 
     // convert display area to window area, adding the size necessary for the
index 5de4caceadcb34cd3a4be54efcecaab3d0874b79..80b24e73f84c0dd36da83fd9cb9d8289042e3202 100644 (file)
@@ -164,7 +164,7 @@ wxBookCtrlBase* wxPropertySheetDialog::CreateBookCtrl()
         bookCtrl = new wxBookCtrl(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, style );
     
     if (GetSheetStyle() & wxPROPSHEET_SHRINKTOFIT)
-        bookCtrl->SetShrinkMode(true);
+        bookCtrl->SetFitToCurrentPage(true);
     
     return bookCtrl;
 }