Stub out MSWSetTabStops for now

This commit is contained in:
Robin Dunn
2020-05-14 17:04:37 -07:00
parent 8dba98cdc3
commit cbf218d561

View File

@@ -90,6 +90,17 @@ def run():
#endif
""")
c.find('MSWSetTabStops').ignore()
c.addCppMethod('void', 'MSWSetTabStops', '(const wxArrayInt& tabStops)',
doc="""\
""",
body="""\
#ifdef __WXMSW__
// TODO:
//self->MSWSetTabStops(*tabStops);
#endif
""")
tools.fixWindowClass(c)
module.addGlobalStr('wxListBoxNameStr', c)