diff options
Diffstat (limited to 'src/gui/widgets/checkbox.cpp')
-rw-r--r-- | src/gui/widgets/checkbox.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/widgets/checkbox.cpp b/src/gui/widgets/checkbox.cpp index 71e718fed..7377a5325 100644 --- a/src/gui/widgets/checkbox.cpp +++ b/src/gui/widgets/checkbox.cpp @@ -42,11 +42,12 @@ int CheckBox::instances = 0; Skin *CheckBox::mSkin = nullptr; float CheckBox::mAlpha = 1.0; -CheckBox::CheckBox(const std::string &caption, const bool selected, +CheckBox::CheckBox(const Widget2 *const widget, + const std::string &caption, const bool selected, gcn::ActionListener *const listener, const std::string &eventId) : gcn::CheckBox(caption, selected), - Widget2(), + Widget2(widget), mHasMouse(false), mPadding(0), mImagePadding(0), |