mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Change Array arguments to TypedArray
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user