diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-05-06 10:26:10 +0200 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-05-08 12:48:01 +0200 |
commit | b4c6cc7d82d1fcdb3bed734c4e22c19e012c84df (patch) | |
tree | 9d29900c69482a9fc491f4c842e56028d9d049a9 /editor/editor_help_search.cpp | |
parent | 281fe39929303a8ef12e72ff7999b849bbe0678d (diff) | |
download | redot-engine-b4c6cc7d82d1fcdb3bed734c4e22c19e012c84df.tar.gz |
[Core] Add case-insensitive `String::containsn`
Diffstat (limited to 'editor/editor_help_search.cpp')
-rw-r--r-- | editor/editor_help_search.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/editor_help_search.cpp b/editor/editor_help_search.cpp index ff381d68c0..f2154f03c3 100644 --- a/editor/editor_help_search.cpp +++ b/editor/editor_help_search.cpp @@ -40,7 +40,7 @@ bool EditorHelpSearch::_all_terms_in_name(const Vector<String> &p_terms, const String &p_name) const { for (int i = 0; i < p_terms.size(); i++) { - if (p_name.findn(p_terms[i]) < 0) { + if (!p_name.containsn(p_terms[i])) { return false; } } @@ -109,7 +109,7 @@ Dictionary EditorHelpSearch::_native_search_cb(const String &p_search_string, in if (class_doc.name.is_empty()) { continue; } - if (class_doc.name.findn(term) > -1) { + if (class_doc.name.containsn(term)) { ret[vformat("class_name:%s", class_doc.name)] = class_doc.name; } if (term.length() > 1 || term == "@") { @@ -746,7 +746,7 @@ bool EditorHelpSearch::Runner::_match_string(const String &p_term, const String if (search_flags & SEARCH_CASE_SENSITIVE) { return p_string.find(p_term) > -1; } else { - return p_string.findn(p_term) > -1; + return p_string.containsn(p_term); } } |