Ensure item is valid before using it.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25209 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -135,11 +135,12 @@ check the source for this sample to see how to implement them.
|
|||||||
# Methods
|
# Methods
|
||||||
|
|
||||||
def OnMenuHighlight(self, event):
|
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()
|
id = event.GetMenuId()
|
||||||
item = self.GetMenuBar().FindItemById(id)
|
item = self.GetMenuBar().FindItemById(id)
|
||||||
text = item.GetText()
|
if item:
|
||||||
help = item.GetHelp()
|
text = item.GetText()
|
||||||
|
help = item.GetHelp()
|
||||||
|
|
||||||
# but in this case just call Skip so the default is done
|
# but in this case just call Skip so the default is done
|
||||||
event.Skip()
|
event.Skip()
|
||||||
|
Reference in New Issue
Block a user