Nth -> Item
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22086 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -2291,7 +2291,7 @@ wxAccStatus wxWindowAccessible::Navigate(wxNavDir navDir, int fromId,
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (fromId <= (int) GetWindow()->GetChildren().GetCount())
|
if (fromId <= (int) GetWindow()->GetChildren().GetCount())
|
||||||
node = GetWindow()->GetChildren().Nth(fromId-1);
|
node = GetWindow()->GetChildren().Item(fromId-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (node && node->GetNext())
|
if (node && node->GetNext())
|
||||||
@@ -2320,7 +2320,7 @@ wxAccStatus wxWindowAccessible::Navigate(wxNavDir navDir, int fromId,
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (fromId <= (int) GetWindow()->GetChildren().GetCount())
|
if (fromId <= (int) GetWindow()->GetChildren().GetCount())
|
||||||
node = GetWindow()->GetChildren().Nth(fromId-1);
|
node = GetWindow()->GetChildren().Item(fromId-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (node && node->GetPrevious())
|
if (node && node->GetPrevious())
|
||||||
|
Reference in New Issue
Block a user