reSWIGGed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44041 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-12-23 00:11:49 +00:00
parent 2bd162773d
commit 59ccbf7fec
21 changed files with 995 additions and 1001 deletions

View File

@@ -10728,9 +10728,15 @@ class Menu(EvtHandler):
"""Remove(self, int id) -> MenuItem"""
return _core_.Menu_Remove(*args, **kwargs)
def RemoveItem(*args, **kwargs):
def RemoveItem(self, item):
"""RemoveItem(self, MenuItem item) -> MenuItem"""
return _core_.Menu_RemoveItem(*args, **kwargs)
#// The return object is always the parameter, so return that
#// proxy instead of the new one
val = _core_.Menu_RemoveItem(self, item)
item.this.own(val.this.own())
val.this.disown()
return item
def Delete(*args, **kwargs):
"""Delete(self, int id) -> bool"""