]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/menu.cpp
Added wxWakeUpIdle() to wxGTK,
[wxWidgets.git] / src / msw / menu.cpp
index 8181a46864f75bb8c67ad50dfdda8a2de7109e58..845c67a0b46e33ab2aa4dd4c4c594078977cfacd 100644 (file)
@@ -432,14 +432,12 @@ bool wxMenu::ProcessCommand(wxCommandEvent & event)
 {
     bool processed = FALSE;
 
-#if WXWIN_COMPATIBILITY
     // Try a callback
     if (m_callback)
     {
         (void)(*(m_callback))(*this, event);
         processed = TRUE;
     }
-#endif WXWIN_COMPATIBILITY
 
     // Try the menu's event handler
     if ( !processed && GetEventHandler())