]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/menu.cpp
another segfault fix
[wxWidgets.git] / src / msw / menu.cpp
index 4721abb4311543363bcc483ed07c8e0ff4711d1c..93e92056ef02f1f94f3d2b4e323ac341e7eee8df 100644 (file)
@@ -649,8 +649,6 @@ bool wxMenuBar::Insert(size_t pos, wxMenu *menu, const wxString& title)
 
     m_titles.Insert(title, pos);
 
-    menu->Attach(this);
-
     if ( IsAttached() )
     {
         if ( !::InsertMenu(GetHmenu(), pos,
@@ -722,8 +720,6 @@ wxMenu *wxMenuBar::Remove(size_t pos)
             wxLogLastError(wxT("RemoveMenu"));
         }
 
-        menu->Detach();
-
 #if wxUSE_ACCEL
         if ( menu->HasAccels() )
         {