aboutsummaryrefslogtreecommitdiff
path: root/main/tests/test_gui.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2017-01-14 18:03:38 +0100
committerRémi Verschelde2017-01-16 08:49:52 +0100
commitf44ee891beaad397481dd88da41cb80e6539774f (patch)
tree82ce10e73d3b1da6229618ce93222ee49e34841b /main/tests/test_gui.cpp
parente2a3f06f3d0c49d87b86c12407d69174b58ae448 (diff)
downloadgodot-f44ee891beaad397481dd88da41cb80e6539774f.tar.gz
godot-f44ee891beaad397481dd88da41cb80e6539774f.tar.zst
godot-f44ee891beaad397481dd88da41cb80e6539774f.zip
Style: Fix statements ending with ';;'
Diffstat (limited to 'main/tests/test_gui.cpp')
-rw-r--r--main/tests/test_gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/tests/test_gui.cpp b/main/tests/test_gui.cpp
index b0ebc2018..899bdc37b 100644
--- a/main/tests/test_gui.cpp
+++ b/main/tests/test_gui.cpp
@@ -353,14 +353,14 @@ public:
label = memnew( Label );
label->set_text("Some Label");
label->set_pos( Point2(20,20) );
- ctl->add_child(label);;
+ ctl->add_child(label);
ctl= memnew( Control );
ctl->set_name("tab 3");
button = memnew( Button );
button->set_text("Some Button");
button->set_pos( Point2(30,50) );
- ctl->add_child(button);;
+ ctl->add_child(button);
tabc->add_child(ctl);