Style: apply clang-format (3.9.1) to current source

This commit is contained in:
Rémi Verschelde 2017-12-11 15:18:06 +01:00
parent b3a1821b46
commit acb7107720
12 changed files with 44 additions and 44 deletions

View file

@ -124,9 +124,9 @@ void ScriptCreateDialog::_create_new() {
cname = class_name->get_text();
String text;
if (template_select==0) {
if (template_select == 0) {
text = ScriptServer::get_language(language_menu->get_selected())->get_template(cname, parent_name->get_text());
} else if (template_select==1) {
} else if (template_select == 1) {
text = ScriptServer::get_language(language_menu->get_selected())->get_empty_template(cname, parent_name->get_text());
} else if (template_select == 2) {
text = ScriptServer::get_language(language_menu->get_selected())->get_nocomment_template(cname, parent_name->get_text());