Setting the invoking window for all submenus is unnecessary as
wxMenu::GetWindow() recurses upwards anyhow and results in assert failures
after recent menu code changes.
Simply don't do this.
OTOH do reset the invoking window to NULL after the menu is dismissed to avoid
storing a dangling pointer in the menu.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64142
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
-static void SetInvokingWindow( wxMenu *menu, wxWindow* win )
-{
- menu->SetInvokingWindow( win );
-
- wxMenuItemList::compatibility_iterator node = menu->GetMenuItems().GetFirst();
- while (node)
- {
- wxMenuItem *menuitem = node->GetData();
- if (menuitem->IsSubMenu())
- {
- SetInvokingWindow( menuitem->GetSubMenu(), win );
- }
-
- node = node->GetNext();
- }
-}
-
extern "C" {
static
void wxPopupMenuPositionCallback( GtkMenu *menu,
extern "C" {
static
void wxPopupMenuPositionCallback( GtkMenu *menu,
wxCHECK_MSG( menu != NULL, false, wxT("invalid popup-menu") );
wxCHECK_MSG( menu != NULL, false, wxT("invalid popup-menu") );
- SetInvokingWindow( menu, this );
+ menu->SetInvokingWindow( this );
+ menu->SetInvokingWindow( NULL );
+