]> git.saurik.com Git - wxWidgets.git/commitdiff
Remove useless code.
authorMattia Barbon <mbarbon@cpan.org>
Sun, 28 Aug 2005 08:05:33 +0000 (08:05 +0000)
committerMattia Barbon <mbarbon@cpan.org>
Sun, 28 Aug 2005 08:05:33 +0000 (08:05 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35330 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/motif/frame.cpp
src/motif/menu.cpp

index 6622d42bd1f22c0cbc189dea666115e80ac8bf50..bf63528fbac234443623ec6a821bfa550eb2cd4b 100644 (file)
@@ -281,11 +281,6 @@ wxFrame::~wxFrame()
     if (m_frameMenuBar)
     {
         m_frameMenuBar->DestroyMenuBar();
     if (m_frameMenuBar)
     {
         m_frameMenuBar->DestroyMenuBar();
-
-        // Hack to stop core dump on Ultrix, OSF, for some strange reason.
-#if MOTIF_MENUBAR_DELETE_FIX
-        GetMenuBar()->SetMainWidget((WXWidget) NULL);
-#endif
         delete m_frameMenuBar;
         m_frameMenuBar = NULL;
     }
         delete m_frameMenuBar;
         m_frameMenuBar = NULL;
     }
index 46e9e5a15fc4c71d9bc0579cf5a4df356eebe2a9..ed9421976a829e267af9d21c8b09a66de98ccd79 100644 (file)
@@ -173,15 +173,6 @@ bool wxMenu::ProcessCommand(wxCommandEvent & event)
 {
     bool processed = false;
 
 {
     bool processed = false;
 
-#if wxUSE_MENU_CALLBACK
-    // Try a callback
-    if (m_callback)
-    {
-        (void) (*(m_callback)) (*this, event);
-        processed = true;
-    }
-#endif // wxUSE_MENU_CALLBACK
-
     // Try the menu's event handler
     if ( !processed && GetEventHandler())
     {
     // Try the menu's event handler
     if ( !processed && GetEventHandler())
     {