git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51574
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
-// special version of wxGetTopLevelParent() which is safe to call when the
-// parent is being destroyed: wxGetTopLevelParent() would just return NULL in
-// this case because wxWindow version of IsTopLevel() is used when it's called
-// during window destruction instead of wxTLW one, but we want to distinguish
-// between these cases
+// return the top level parent window if it's not being deleted yet, otherwise
+// return NULL
static wxTopLevelWindow *GetTLWParentIfNotBeingDeleted(wxWindow *win)
{
static wxTopLevelWindow *GetTLWParentIfNotBeingDeleted(wxWindow *win)
{
- for ( ; win; win = win->GetParent() )
- if ( win->IsTopLevel() )
+ // IsTopLevel() will return false for a wxTLW being deleted, so we also
+ // need the parent test for this case
+ wxWindow * const parent = win->GetParent();
+ if ( !parent || win->IsTopLevel() )
{
if ( win->IsBeingDeleted() )
return NULL;
{
if ( win->IsBeingDeleted() )
return NULL;
}
wxASSERT_MSG( win, _T("button without top level parent?") );
}
wxASSERT_MSG( win, _T("button without top level parent?") );
- return wxDynamicCast(win, wxTopLevelWindow);
+ wxTopLevelWindow * const tlw = wxDynamicCast(win, wxTopLevelWindow);
+ wxASSERT_MSG( tlw, _T("logic error in GetTLWParentIfNotBeingDeleted()") );
+
+ return tlw;
}
// set this button as being currently default
}
// set this button as being currently default