do accept focus in notebook as it needs it for tabs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45058 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2007-03-25 23:00:36 +00:00
parent 3368424ae8
commit 6b81fbd8de

View File

@ -106,6 +106,9 @@ public:
// new is -1)
void SendPageChangedEvent(int nPageOld, int nPageNew = -1);
// wxBookCtrlBase overrides this method to return false but we do need
// focus because we have tabs
virtual bool AcceptsFocus() const { return wxControl::AcceptsFocus(); }
protected:
DECLARE_NO_COPY_CLASS(wxNotebookBase)