Nth -> Item

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22086 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2003-07-18 16:12:52 +00:00
parent 39d2f9a7c8
commit 33b3f7c34a

View File

@@ -2291,7 +2291,7 @@ wxAccStatus wxWindowAccessible::Navigate(wxNavDir navDir, int fromId,
else
{
if (fromId <= (int) GetWindow()->GetChildren().GetCount())
node = GetWindow()->GetChildren().Nth(fromId-1);
node = GetWindow()->GetChildren().Item(fromId-1);
}
if (node && node->GetNext())
@@ -2320,7 +2320,7 @@ wxAccStatus wxWindowAccessible::Navigate(wxNavDir navDir, int fromId,
else
{
if (fromId <= (int) GetWindow()->GetChildren().GetCount())
node = GetWindow()->GetChildren().Nth(fromId-1);
node = GetWindow()->GetChildren().Item(fromId-1);
}
if (node && node->GetPrevious())