mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
Fix several oddities in Project Converter
This is not a complete list. Nor are all of the changes exhaustive. - Measure final execution time in seconds instead of milliseconds. - Use `vformat()` instead of unreadable string concatenation whenever necessary. - Replaces every `&` used with booleans with `&&` because Visual Studio was really complaining about it. - Adds punctuation to some comments, in accordance to codebase guidelines. - Fixes some typos around the file (such as "parenthesis" being called "parenthess"), as well as attempt to change some sentences to be more English-correct. - Reworded some comments and error messages entirely.
This commit is contained in:
parent
337e4d185a
commit
d377bdb3ad
File diff suppressed because it is too large
Load Diff
@ -76,7 +76,7 @@ private:
|
||||
Vector<String> check_for_files();
|
||||
|
||||
Vector<String> parse_arguments(const String &line);
|
||||
int get_end_parenthess(const String &line) const;
|
||||
int get_end_parenthesis(const String &line) const;
|
||||
String connect_arguments(const Vector<String> &line, int from, int to = -1) const;
|
||||
String get_starting_space(const String &line) const;
|
||||
String get_object_of_execution(const String &line) const;
|
||||
|
Loading…
Reference in New Issue
Block a user