Lots of updates to get caught up with wxWidgets master (3.1.3+)

This commit is contained in:
Robin Dunn
2019-05-23 21:43:40 -07:00
parent dcb06f6f18
commit 5d078557bf
18 changed files with 189 additions and 11 deletions

View File

@@ -328,12 +328,11 @@ def fixSizerClass(klass):
"""
removeVirtuals(klass)
klass.find('CalcMin').isVirtual = True
klass.find('RecalcSizes').isVirtual = True
klass.find('RepositionChildren').isVirtual = True
# in the wxSizer class they are pure-virtual
# in the wxSizer class it is pure-virtual
if klass.name == 'wxSizer':
klass.find('CalcMin').isPureVirtual = True
klass.find('RecalcSizes').isPureVirtual = True
def fixBookctrlClass(klass):