Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions etgtools/tweaker_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@


PY3 = sys.version_info[0] == 3
isWindows = sys.platform.startswith('win')

magicMethods = {
'operator!=' : '__ne__',
Expand Down Expand Up @@ -485,6 +486,9 @@ def addWindowVirtuals(klass):
#void UpdateWindowUI(long flags = wxUPDATE_UI_NONE);
#void DoUpdateWindowUI(wxUpdateUIEvent& event) ;
]
if isWindows:
# does not compile on GTK and macOS.
publicWindowVirtuals.append( ('CreateAccessible', 'wxAccessible* CreateAccessible()') )

protectedWindowVirtuals = [
('ProcessEvent', 'bool ProcessEvent(wxEvent & event)'),
Expand Down