summaryrefslogtreecommitdiff
path: root/scene/gui/check_box.h
diff options
context:
space:
mode:
Diffstat (limited to 'scene/gui/check_box.h')
-rw-r--r--scene/gui/check_box.h15
1 files changed, 5 insertions, 10 deletions
diff --git a/scene/gui/check_box.h b/scene/gui/check_box.h
index 6a4893936f..9b682de177 100644
--- a/scene/gui/check_box.h
+++ b/scene/gui/check_box.h
@@ -29,27 +29,22 @@
#ifndef CHECK_BOX_H
#define CHECK_BOX_H
-
#include "scene/gui/button.h"
/**
@author Mariano Suligoy <marianognu.esyrpg@gmail.com>
*/
class CheckBox : public Button {
- GDCLASS( CheckBox, Button );
-
+ GDCLASS(CheckBox, Button);
protected:
- void _notification(int p_what);
-
- bool is_radio();
+ void _notification(int p_what);
+ bool is_radio();
public:
-
- CheckBox(const String& p_text=String());
- ~CheckBox();
-
+ CheckBox(const String &p_text = String());
+ ~CheckBox();
};
#endif