git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25209
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
# Methods
def OnMenuHighlight(self, event):
- # Show how to get menu item imfo from this event handler
+ # Show how to get menu item info from this event handler
id = event.GetMenuId()
item = self.GetMenuBar().FindItemById(id)
- text = item.GetText()
- help = item.GetHelp()
+ if item:
+ text = item.GetText()
+ help = item.GetHelp()
# but in this case just call Skip so the default is done
event.Skip()