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
This commit is contained in:
Benjamin Williams
2006-07-22 07:34:45 +00:00
parent 5088ab3fdd
commit 134e83cbea

View File

@@ -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;