diff options
| author | anakimluke | 2018-02-22 19:07:10 -0300 |
|---|---|---|
| committer | anakimluke | 2018-02-22 19:41:37 -0300 |
| commit | 370f84f41cf3ce493c2de687455880d9e1e04be6 (patch) | |
| tree | 6c91cc393fe13be94c62f75a11dc4c0fe3ba34d3 /modules/gdscript/gdscript_editor.cpp | |
| parent | 689dfcd9ec5ad8aceabd96aaadf6eb57a31e62e4 (diff) | |
| download | godot-370f84f41cf3ce493c2de687455880d9e1e04be6.tar.gz godot-370f84f41cf3ce493c2de687455880d9e1e04be6.tar.zst godot-370f84f41cf3ce493c2de687455880d9e1e04be6.zip | |
Removed whitespaces around arguments of functions.
Functions automatically generated by conneting
signals via GUI put whitespaces around the
arguments of the generated function. This is
inconsistent with the style guide.
This commit fixes that.
Diffstat (limited to 'modules/gdscript/gdscript_editor.cpp')
| -rw-r--r-- | modules/gdscript/gdscript_editor.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/gdscript/gdscript_editor.cpp b/modules/gdscript/gdscript_editor.cpp index 505562324..db3787470 100644 --- a/modules/gdscript/gdscript_editor.cpp +++ b/modules/gdscript/gdscript_editor.cpp @@ -410,13 +410,11 @@ String GDScriptLanguage::make_function(const String &p_class, const String &p_na String s = "func " + p_name + "("; if (p_args.size()) { - s += " "; for (int i = 0; i < p_args.size(); i++) { if (i > 0) s += ", "; s += p_args[i].get_slice(":", 0); } - s += " "; } s += "):\n" + _get_indentation() + "pass # replace with function body\n"; |
