There is already a Hide C++ method, no need to add a Python implementation anymore.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@70255 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2012-01-03 23:13:13 +00:00
parent 3d0101be82
commit e4979407ba

View File

@@ -106,13 +106,6 @@ def run():
self.Add(*item)
""")
c.addPyMethod('Hide', '(self, item, recursive=False)',
doc="""\
A convenience method for `Show`(item, False, recursive).
""",
body="""\
return self.Show(item, False, recursive)
""")
#---------------------------------------------
c = module.find('wxBoxSizer')