diff options
Diffstat (limited to 'scene/gui/check_button.h')
-rw-r--r-- | scene/gui/check_button.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/scene/gui/check_button.h b/scene/gui/check_button.h index 1c5440a25d..adf210a1e1 100644 --- a/scene/gui/check_button.h +++ b/scene/gui/check_button.h @@ -29,24 +29,20 @@ #ifndef CHECK_BUTTON_H #define CHECK_BUTTON_H - #include "scene/gui/button.h" /** @author Juan Linietsky <reduzio@gmail.com> */ class CheckButton : public Button { - GDCLASS( CheckButton, Button ); - + GDCLASS(CheckButton, Button); protected: void _notification(int p_what); public: - CheckButton(); ~CheckButton(); - }; #endif |