summaryrefslogtreecommitdiff
path: root/servers/text_server.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-09-23 10:24:46 +0200
committerGitHub <noreply@github.com>2022-09-23 10:24:46 +0200
commit006e345695a0448acefd63dcb726a07b63cb1d0d (patch)
tree78e020ad93b2525718e1d65999d853442f2a870c /servers/text_server.h
parent03410efa15b88fc1e55476efb6b47d5079d34c96 (diff)
parent163257d51bd103588da246d39ab5d10afaf15c09 (diff)
Merge pull request #65817 from bruvzg/typed_array
Diffstat (limited to 'servers/text_server.h')
-rw-r--r--servers/text_server.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/text_server.h b/servers/text_server.h
index b62d418fc8..a0624c2c05 100644
--- a/servers/text_server.h
+++ b/servers/text_server.h
@@ -485,7 +485,7 @@ public:
// String functions.
virtual PackedInt32Array string_get_word_breaks(const String &p_string, const String &p_language = "") const = 0;
- virtual int is_confusable(const String &p_string, const PackedStringArray &p_dict) const { return -1; };
+ virtual int64_t is_confusable(const String &p_string, const PackedStringArray &p_dict) const { return -1; };
virtual bool spoof_check(const String &p_string) const { return false; };
virtual String strip_diacritics(const String &p_string) const;