summaryrefslogtreecommitdiff
path: root/src/gui/setup_joystick.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/setup_joystick.cpp')
-rw-r--r--src/gui/setup_joystick.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/setup_joystick.cpp b/src/gui/setup_joystick.cpp
index 851869d75..d556c20e3 100644
--- a/src/gui/setup_joystick.cpp
+++ b/src/gui/setup_joystick.cpp
@@ -41,13 +41,13 @@
extern Joystick *joystick;
-Setup_Joystick::Setup_Joystick() :
- SetupTab(),
+Setup_Joystick::Setup_Joystick(const Widget2 *const widget) :
+ SetupTab(widget),
mCalibrateLabel(new Label(_("Press the button to start calibration"))),
mCalibrateButton(new Button(_("Calibrate"), "calibrate", this)),
mJoystickEnabled(new CheckBox(_("Enable joystick"))),
mNamesModel(new NamesModel()),
- mNamesDropDown(new DropDown(mNamesModel)),
+ mNamesDropDown(new DropDown(this, mNamesModel)),
mUseInactiveCheckBox(new CheckBox(_("Use joystick if client "
"window inactive"), config.getBoolValue("useInactiveJoystick")))
{