Change Array arguments to TypedArray
This commit is contained in:
parent
736632ee7e
commit
7adc8376ed
66 changed files with 159 additions and 158 deletions
|
|
@ -38,8 +38,8 @@
|
|||
EditorTranslationParser *EditorTranslationParser::singleton = nullptr;
|
||||
|
||||
Error EditorTranslationParserPlugin::parse_file(const String &p_path, Vector<String> *r_ids, Vector<Vector<String>> *r_ids_ctx_plural) {
|
||||
Array ids;
|
||||
Array ids_ctx_plural;
|
||||
TypedArray<String> ids;
|
||||
TypedArray<Array> ids_ctx_plural;
|
||||
|
||||
if (GDVIRTUAL_CALL(_parse_file, p_path, ids, ids_ctx_plural)) {
|
||||
// Add user's extracted translatable messages.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue