From 3056dddc5438f7273ac6c75d8396520cd798812c Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 22 Jan 2008 19:31:10 +0000 Subject: [PATCH] remove the unnecessary non-const GetPage() overload git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51338 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/bookctrl.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/wx/bookctrl.h b/include/wx/bookctrl.h index 60ceefc855..f791d2550a 100644 --- a/include/wx/bookctrl.h +++ b/include/wx/bookctrl.h @@ -96,7 +96,6 @@ public: virtual size_t GetPageCount() const { return m_pages.size(); } // get the panel which represents the given page - wxWindow *GetPage(size_t n) { return m_pages[n]; } wxWindow *GetPage(size_t n) const { return m_pages[n]; } // get the current page or NULL if none -- 2.45.2