Set some output and inOut parameter annotations

This commit is contained in:
Robin Dunn
2016-09-14 20:21:06 -07:00
parent 756e5a42b0
commit 0ffcd4323a
2 changed files with 9 additions and 1 deletions

View File

@@ -56,8 +56,10 @@ def run():
c = module.find('wxPGProperty')
tools.ignoreConstOverloads(c)
c.find('StringToValue.variant').out = True
c.find('IntToValue.variant').out = True
# TODO: Some of the wxPGProperty methods should probably be pythonized a bit...
# TODO: Some other wxPGProperty methods should be pythonized a bit...
c = module.find('wxPGChoicesData')

View File

@@ -77,6 +77,12 @@ def run():
c.briefDoc = "Basic property with integer value."
c.detailedDoc = []
c = module.find('wxLongStringProperty')
c.find('OnButtonClick.value').inOut = True
c.find('DisplayEditorDialog.value').inOut = True
c = module.find('wxDirProperty')
c.find('OnButtonClick.value').inOut = True
c = module.find('wxPGArrayEditorDialog')
tools.fixWindowClass(c, hideVirtuals=False, ignoreProtected=False)