From: Julian Smart Date: Fri, 18 Jul 2003 16:12:52 +0000 (+0000) Subject: Nth -> Item X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/33b3f7c34ac90609dd0c954c1a11397a21c15556 Nth -> Item git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22086 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/wincmn.cpp b/src/common/wincmn.cpp index 2043e41e43..0b883ad106 100644 --- a/src/common/wincmn.cpp +++ b/src/common/wincmn.cpp @@ -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())