]> git.saurik.com Git - wxWidgets.git/commitdiff
do accept focus in notebook as it needs it for tabs
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 25 Mar 2007 23:00:36 +0000 (23:00 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 25 Mar 2007 23:00:36 +0000 (23:00 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45058 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/notebook.h

index d6b68457f04c5caeb2b09eeb747204a5e424aec5..f94e51622737c6e7cced934fb2ae1e115579a552 100644 (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)