]> git.saurik.com Git - wxWidgets.git/commitdiff
Moved assert to before the segfault.
authorRon Lee <ron@debian.org>
Fri, 8 Mar 2002 01:23:17 +0000 (01:23 +0000)
committerRon Lee <ron@debian.org>
Fri, 8 Mar 2002 01:23:17 +0000 (01:23 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14490 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/containr.cpp

index 5ad3a7f00652e6ff53fda9736ee9cbe689efbef7..fcd92fc6ac9f2727064971e123216e649cb941f9 100644 (file)
@@ -60,9 +60,13 @@ void wxControlContainer::SetLastFocus(wxWindow *win)
         {
             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;