Applied patches for AIX,

Corrected prop dialog,
  Tabbing in parent top-level-windows no longer possible,


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3982 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-10-14 09:29:20 +00:00
parent a9b832dd86
commit cf1f0870d8
7 changed files with 12 additions and 6 deletions

View File

@@ -129,6 +129,10 @@ void wxPanel::OnNavigationKey( wxNavigationKeyEvent& event )
wxWindow *focussed_child_of_p = this;
for ( wxWindow *p = GetParent(); p; p = p->GetParent() )
{
// we don't want to tab into a different dialog or frame
if ( focussed_child_of_p->IsTopLevel() )
break;
if ( wxDynamicCast(p, wxPanel) )
{
event.SetCurrentFocus( focussed_child_of_p );