]> git.saurik.com Git - wxWidgets.git/commitdiff
Nth -> Item
authorJulian Smart <julian@anthemion.co.uk>
Fri, 18 Jul 2003 16:12:52 +0000 (16:12 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Fri, 18 Jul 2003 16:12:52 +0000 (16:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22086 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/wincmn.cpp

index 2043e41e43d00e86aa88d3ba75ab8513520757b4..0b883ad1069c014bd2167016beb68a3039526c42 100644 (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())