Changed function to SetFitToCurrentPage

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37356 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2006-02-06 17:51:11 +00:00
parent ddec9f1eeb
commit da817fa6eb
3 changed files with 6 additions and 6 deletions

View 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: