-#if WXWIN_COMPATIBILITY
- // compatibility: these functions are deprecated, use the new ones instead
- bool Enabled(int id) const { return IsEnabled(id); }
- bool Checked(int id) const { return IsChecked(id); }
-
- wxMenuItem* FindItemForId(int itemId, wxMenu **itemMenu) const
- { return FindItem(itemId, itemMenu); }
-
- wxList& GetItems() const { return (wxList &)m_items; }
-#endif // WXWIN_COMPATIBILITY
-
-#if wxUSE_MENU_CALLBACK
- // wxWin 1.6x compatible menu event handling
- wxFunction GetCallback() const { return m_callback; }
- void Callback(const wxFunction func) { m_callback = func; }
-
- wxFunction m_callback;
-#endif // wxUSE_MENU_CALLBACK