Change uses of FindWindowById to just FindWindow.

Also, clarify default value for parent arg in FindWindow* staticmethods.
This commit is contained in:
Robin Dunn
2017-04-10 11:05:36 -07:00
parent b0feb49137
commit 637db6c4bf
6 changed files with 12 additions and 6 deletions

View File

@@ -224,6 +224,12 @@ def run():
c.find('SetSizer.sizer').transfer = True
c.find('SetSizerAndFit.sizer').transfer = True
# Change some =0 default values to =NULL so the docs will make more sense
c.find('FindWindowById.parent').default='NULL'
c.find('FindWindowByLabel.parent').default='NULL'
c.find('FindWindowByName.parent').default='NULL'
# Define some properties using the getter and setter methods
c.addProperty('AcceleratorTable GetAcceleratorTable SetAcceleratorTable')
c.addProperty('AutoLayout GetAutoLayout SetAutoLayout')