Lots of changes needed to get things building again after switching to wxWidgets master

This commit is contained in:
Robin Dunn
2018-02-09 15:15:01 -08:00
parent f1a24d4978
commit 87d7edab83
33 changed files with 219 additions and 65 deletions

View File

@@ -46,7 +46,8 @@ def run():
assert isinstance(m, etgtools.MethodDef)
if 'void *' in m.argsString or \
'wxClientData **' in m.argsString or \
'wxString *' in m.argsString:
'wxString *' in m.argsString or \
'std::vector' in m.argsString:
m.ignore()
for m in c.findAll('Append'):