Add stubs for wxUIActionSimulator

This commit is contained in:
Robin Dunn
2020-08-31 14:07:20 -07:00
parent ad616eea16
commit 62b37d24fe
2 changed files with 6 additions and 0 deletions

View File

@@ -6593,6 +6593,7 @@
"USE_GLCANVAS":"wx.glcanvas.",
"USE_JOYSTICK":"wx.adv.",
"USE_MEDIACTRL":"wx.media.",
"USE_UIACTIONSIMULATOR":"wx.",
"USE_WEBKIT":"wx.webkit.",
"USE_WEBVIEW":"wx.html2.",
"Uint16":"wx.",

View File

@@ -31,6 +31,11 @@ def run():
# Tweak the parsed meta objects in the module object as needed for
# customizing the generated code and docstrings.
tools.generateStubs('wxUSE_UIACTIONSIMULATOR', module,
# extraHdrCode='',
# typeValMap={}
)
c = module.find('wxUIActionSimulator')
assert isinstance(c, etgtools.ClassDef)
c.addPrivateCopyCtor()