Changed m_children to GetChildren() -- not all ports are the same!

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1215 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-12-17 10:10:53 +00:00
parent 2dc1bdac6a
commit 399aa5e3f2

View File

@@ -78,7 +78,7 @@ void wxPanel::OnSysColourChanged(wxSysColourChangedEvent& event)
void wxPanel::OnNavigationKey( wxNavigationKeyEvent& event ) void wxPanel::OnNavigationKey( wxNavigationKeyEvent& event )
{ {
if (m_children.GetCount() < 2) if (GetChildren().GetCount() < 2)
{ {
event.Skip(); event.Skip();
return; return;
@@ -100,8 +100,8 @@ void wxPanel::OnNavigationKey( wxNavigationKeyEvent& event )
return; return;
} }
wxNode *start_node = m_children.Find( winFocus ); wxNode *start_node = GetChildren().Find( winFocus );
if (!start_node) start_node = m_children.First(); if (!start_node) start_node = GetChildren().First();
wxNode *node = event.GetDirection() ? start_node->Next() : start_node->Previous(); wxNode *node = event.GetDirection() ? start_node->Next() : start_node->Previous();
@@ -124,7 +124,7 @@ void wxPanel::OnNavigationKey( wxNavigationKeyEvent& event )
} }
*/ */
node = event.GetDirection() ? m_children.First() : m_children.Last(); node = event.GetDirection() ? GetChildren().First() : GetChildren().Last();
} }
wxWindow *child = (wxWindow*) node->Data(); wxWindow *child = (wxWindow*) node->Data();