Ignore both CallAfters

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@74576 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2013-07-21 16:35:55 +00:00
parent 82c6ce53e7
commit 7d377443b6

View File

@@ -256,7 +256,8 @@ def run():
# Ignore the C++ version of CallAfter. We have our own.
# TODO: If we want to support this we'll need concrete implementations of
# the template, probably using PyObject* args.
c.find('CallAfter').ignore()
for m in c.find('CallAfter').all():
m.ignore()
# wxEventTable is not documented so we have to ignore SearchEventTable.
# TODO: Should wxEventTable be available to language bindings?