]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/containr.cpp
Updates for Y positioning
[wxWidgets.git] / src / common / containr.cpp
index 51a0e1744bd4c2369c192389a4a87656bdd50b75..5ad3a7f00652e6ff53fda9736ee9cbe689efbef7 100644 (file)
@@ -50,13 +50,20 @@ wxControlContainer::wxControlContainer(wxWindow *winParent)
 
 void wxControlContainer::SetLastFocus(wxWindow *win)
 {
-    // find the last _immediate_ child which got focus
-    while ( win && win != m_winParent )
+    // if we're setting the focus
+    if ( win )
     {
-        win = win->GetParent();
-    }
+        // find the last _immediate_ child which got focus but be prepared to
+        // handle the case when win == m_winParent as well
+        wxWindow *winParent = win;
+        while ( winParent != m_winParent )
+        {
+            win = winParent;
+            winParent = win->GetParent();
+        }
 
-    wxASSERT_MSG( win, _T("attempt to set last focus to not a child?") );
+        wxASSERT_MSG( win, _T("attempt to set last focus to not a child?") );
+    }
 
     m_winLastFocused = win;
 }