summaryrefslogtreecommitdiff
path: root/scene/gui
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-01-12 15:24:17 +0100
committerGitHub <noreply@github.com>2022-01-12 15:24:17 +0100
commit585231a17200bec3cf36e9ccbf2b48bf679e2fd4 (patch)
treed99961cbad7a04e8a33d053d055b9f730a5a84dd /scene/gui
parent4e83fbcd145e2b0a7b0382bff6eb97ad64f3e752 (diff)
parentba2bdc478b9eaad99b6c2a3c860e3dc0fe73a1a6 (diff)
Merge pull request #56492 from akien-mga/remove-author-docstrings
Diffstat (limited to 'scene/gui')
-rw-r--r--scene/gui/check_box.h6
-rw-r--r--scene/gui/check_button.h6
2 files changed, 4 insertions, 8 deletions
diff --git a/scene/gui/check_box.h b/scene/gui/check_box.h
index 735c7aedfe..fcdb2ce08c 100644
--- a/scene/gui/check_box.h
+++ b/scene/gui/check_box.h
@@ -32,9 +32,7 @@
#define CHECK_BOX_H
#include "scene/gui/button.h"
-/**
-@author Mariano Suligoy <marianognu.esyrpg@gmail.com>
-*/
+
class CheckBox : public Button {
GDCLASS(CheckBox, Button);
@@ -50,4 +48,4 @@ public:
~CheckBox();
};
-#endif
+#endif // CHECK_BOX_H
diff --git a/scene/gui/check_button.h b/scene/gui/check_button.h
index 5ba81a1027..9a72d04db2 100644
--- a/scene/gui/check_button.h
+++ b/scene/gui/check_button.h
@@ -32,9 +32,7 @@
#define CHECK_BUTTON_H
#include "scene/gui/button.h"
-/**
-@author Juan Linietsky <reduzio@gmail.com>
-*/
+
class CheckButton : public Button {
GDCLASS(CheckButton, Button);
@@ -48,4 +46,4 @@ public:
~CheckButton();
};
-#endif
+#endif // CHECK_BUTTON_H