From 134e83cbea66ab33f7af99bbfb56add9b863505a Mon Sep 17 00:00:00 2001 From: Benjamin Williams Date: Sat, 22 Jul 2006 07:34:45 +0000 Subject: [PATCH] added some overrides to wxTabFrame to remove errors git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40229 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/aui/auibook.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/aui/auibook.cpp b/src/aui/auibook.cpp index f8dac83294..d001283804 100644 --- a/src/aui/auibook.cpp +++ b/src/aui/auibook.cpp @@ -826,6 +826,19 @@ public: } } + void DoGetSize(int* x, int* y) const + { + if (x) + *x = m_rect.GetWidth(); + if (y) + *y = m_rect.GetHeight(); + } + + void Update() + { + // does nothing + } + public: wxRect m_rect; -- 2.50.0