Patch out GTK specific function from wx 3.2.1

This commit is contained in:
Mark Roszko
2022-09-18 00:42:52 -04:00
committed by Scott Talbert
parent d1cb24cc94
commit 3812a286c4

View File

@@ -212,6 +212,12 @@ def run():
#endif
""")
c.find('GTKAllowDiagnosticsControl').setCppCode("""\
#ifdef __WXGTK__
wxApp::GTKAllowDiagnosticsControl();
#endif
""")
c.find('GetGUIInstance').ignore()