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:
parent
ab0b4f46f7
commit
a12385dc4b
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue