From 0c0437b18d2f70d1be8e190a172f6bd806bb2409 Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Sun, 6 Jan 2019 23:23:59 -0500 Subject: [PATCH] Fix joystick stub compilation Fixes #1125 --- etg/joystick.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etg/joystick.py b/etg/joystick.py index 8508ceda..9f4534ee 100644 --- a/etg/joystick.py +++ b/etg/joystick.py @@ -36,8 +36,8 @@ def run(): assert isinstance(c, etgtools.ClassDef) c.mustHaveApp() - c.addItem(MethodDef(name='GetMaxButtons', type='int', isConst=True)) - c.addItem(MethodDef(name='GetMaxAxes', type='int', isConst=True)) + c.addItem(MethodDef(name='GetMaxButtons', type='int', isConst=True, argsString='() const')) + c.addItem(MethodDef(name='GetMaxAxes', type='int', isConst=True, argsString='() const')) tools.generateStubs('wxUSE_JOYSTICK', module)