1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 07:38:10 +00:00

LibGUI: Add match_case parameter to TextDocument::find_all()

This commit is contained in:
Itamar 2022-03-29 16:32:12 +03:00 committed by Andreas Kling
parent ab0b4f46f7
commit a12385dc4b
2 changed files with 3 additions and 3 deletions

View file

@ -89,7 +89,7 @@ public:
String text() const;
String text_in_range(const TextRange&) const;
Vector<TextRange> find_all(StringView needle, bool regmatch = false);
Vector<TextRange> find_all(StringView needle, bool regmatch = false, bool match_case = true);
void update_regex_matches(StringView);
TextRange find_next(StringView, const TextPosition& start = {}, SearchShouldWrap = SearchShouldWrap::Yes, bool regmatch = false, bool match_case = true);