]> git.saurik.com Git - wxWidgets.git/commitdiff
crash in some very special case when arrows were used to move around fixed
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 23 Feb 1999 15:43:05 +0000 (15:43 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 23 Feb 1999 15:43:05 +0000 (15:43 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1755 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/treectrl.cpp

index b2ebd5e3a035e19cbf22b0440c22f46cb0c5eae3..d9cb6dbb249bcdf3ce9e237344899ec003635dc9 100644 (file)
@@ -1307,14 +1307,15 @@ void wxTreeCtrl::OnChar( wxKeyEvent &event )
                 }
                 if (prev)
                 {
-                    while (IsExpanded(prev))
+                    while ( IsExpanded(prev) && HasChildren(prev) )
                     {
-                        int c = (int)GetChildrenCount( prev, FALSE );
-                        long cockie = 0;
-                        prev = GetFirstChild( prev, cockie );
-                        for (int i = 0; i < c-1; i++)
-                            prev = GetNextSibling( prev );
+                        wxTreeItemId child = GetLastChild(prev);
+                        if ( child )
+                        {
+                            prev = child;
+                        }
                     }
+
                     SelectItem( prev );
                     EnsureVisible( prev );
                 }
@@ -1341,7 +1342,7 @@ void wxTreeCtrl::OnChar( wxKeyEvent &event )
 
         case WXK_DOWN:
             {
-                if (IsExpanded(m_current))
+                if (IsExpanded(m_current) && HasChildren(m_current))
                 {
                     long cookie = 0;
                     wxTreeItemId child = GetFirstChild( m_current, cookie );