From: Benjamin Williams Date: Sat, 22 Jul 2006 07:34:45 +0000 (+0000) Subject: added some overrides to wxTabFrame to remove errors X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/134e83cbea66ab33f7af99bbfb56add9b863505a 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 --- 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;