+
+ return winOldDefault;
+}
+
+// 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
+static wxTopLevelWindow *GetTLWParentIfNotBeingDeleted(wxWindow *win)
+{
+ for ( ; win; win = win->GetParent() )
+ {
+ if ( win->IsBeingDeleted() )
+ return NULL;
+
+ if ( win->IsTopLevel() )
+ break;
+ }
+
+ wxASSERT_MSG( win, _T("button without top level parent?") );
+
+ return wxDynamicCast(win, wxTopLevelWindow);