You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-14 13:41:12 +00:00
Style: Fix statements ending with ';;'
This commit is contained in:
@@ -780,7 +780,7 @@ void ProjectSettings::_copy_to_platform(int p_which) {
|
||||
String name = catname+"/"+propname;
|
||||
Variant value=GlobalConfig::get_singleton()->get(name);
|
||||
|
||||
catname+="."+popup_platform->get_popup()->get_item_text(p_which);;
|
||||
catname+="."+popup_platform->get_popup()->get_item_text(p_which);
|
||||
name = catname+"/"+propname;
|
||||
|
||||
GlobalConfig::get_singleton()->set(name,value);
|
||||
@@ -1363,7 +1363,7 @@ ProjectSettings::ProjectSettings(EditorData *p_data) {
|
||||
|
||||
Control *input_base = memnew( Control );
|
||||
input_base->set_name(TTR("Input Map"));
|
||||
input_base->set_area_as_parent_rect();;
|
||||
input_base->set_area_as_parent_rect();
|
||||
tab_container->add_child(input_base);
|
||||
|
||||
VBoxContainer *vbc = memnew( VBoxContainer );
|
||||
|
||||
Reference in New Issue
Block a user