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?") );
+ // Yes, this can happen, though in a totally pathological case.
+ // like when detaching a menubar from a frame with a child which
+ // has pushed itself as an event handler for the menubar. (wxGtk)
+
+ wxASSERT_MSG( winParent, _T("Setting last-focus for a window that is not our child?") );
+ }
+ }
m_winLastFocused = win;
}