From b8c3d094aa17b4a18616aa8840da21ce76ec7ccb Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 24 Feb 2014 20:54:44 +0000 Subject: [PATCH] Clarify that there is only a single TAB traversal implementation. Don't imply that wxPanel can use either native or generic TAB traversal implementation because this is not true. Closes #16020. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76004 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/panel.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/interface/wx/panel.h b/interface/wx/panel.h index d0a5bbbfd0..9943735c21 100644 --- a/interface/wx/panel.h +++ b/interface/wx/panel.h @@ -10,9 +10,8 @@ A panel is a window on which controls are placed. It is usually placed within a frame. Its main feature over its parent class wxWindow is code for handling - child windows and TAB traversal. Since wxWidgets 2.9, there is support both - for TAB traversal implemented by wxWidgets itself as well as native TAB - traversal (such as for GTK 2.0). + child windows and TAB traversal, which is implemented natively if possible + (e.g. in wxGTK) or by wxWidgets itself otherwise. @note Tab traversal is implemented through an otherwise undocumented intermediate wxControlContainer class from which any class can derive