diff options
Diffstat (limited to 'src/gui/widgets/checkbox.h')
-rw-r--r-- | src/gui/widgets/checkbox.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/widgets/checkbox.h b/src/gui/widgets/checkbox.h index 0ca579d3b..4bb675f65 100644 --- a/src/gui/widgets/checkbox.h +++ b/src/gui/widgets/checkbox.h @@ -23,6 +23,8 @@ #ifndef CHECKBOX_H #define CHECKBOX_H +#include "gui/widgets/widget2.h" + #include <guichan/widgets/checkbox.hpp> #include "localconsts.h" @@ -35,7 +37,8 @@ class Skin; * * \ingroup GUI */ -class CheckBox final : public gcn::CheckBox +class CheckBox final : public gcn::CheckBox, + public Widget2 { public: /** |