Change the type of HtmlCell.Find.param

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@73035 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2012-11-27 01:22:39 +00:00
parent b6865190d5
commit 1e0bcc84c8

View File

@@ -38,14 +38,18 @@ def run():
#-----------------------------------------------------------------
# Tweak the parsed meta objects in the module object as needed for
# customizing the generated code and docstrings.
c = module.find('wxHtmlCell')
assert isinstance(c, etgtools.ClassDef)
c.addPrivateCopyCtor()
c.find('SetNext.cell').transfer = True
c.find('AdjustPagebreak.pagebreak').inOut = True
m = c.find('Find')
assert isinstance(m, etgtools.MethodDef)
m.find('param').type = 'const char*'
m.cppSignature = 'const wxHtmlCell* (int condition, const void* param)'
c = module.find('wxHtmlContainerCell')