diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-01-12 15:24:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-12 15:24:17 +0100 |
commit | 585231a17200bec3cf36e9ccbf2b48bf679e2fd4 (patch) | |
tree | d99961cbad7a04e8a33d053d055b9f730a5a84dd /scene/gui | |
parent | 4e83fbcd145e2b0a7b0382bff6eb97ad64f3e752 (diff) | |
parent | ba2bdc478b9eaad99b6c2a3c860e3dc0fe73a1a6 (diff) |
Merge pull request #56492 from akien-mga/remove-author-docstrings
Diffstat (limited to 'scene/gui')
-rw-r--r-- | scene/gui/check_box.h | 6 | ||||
-rw-r--r-- | scene/gui/check_button.h | 6 |
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 |