diff options
author | Neil <nyamatongwe@gmail.com> | 2023-11-05 22:11:26 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2023-11-05 22:11:26 +1100 |
commit | 26b60d88b6d848f3ba55ca046852e079be5fe3c6 (patch) | |
tree | baf6523ea5e4f2d5adfb021def287a6858802b23 /src/Selection.h | |
parent | a3dd1952c420158febe7a11d596ba3f402eb17ab (diff) | |
download | scintilla-mirror-26b60d88b6d848f3ba55ca046852e079be5fe3c6.tar.gz |
Add SCI_SELECTIONFROMPOINT for modifying multiple selections.
Diffstat (limited to 'src/Selection.h')
-rw-r--r-- | src/Selection.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Selection.h b/src/Selection.h index 30e1e27ad..03ce5083c 100644 --- a/src/Selection.h +++ b/src/Selection.h @@ -129,6 +129,7 @@ struct SelectionRange { bool Contains(Sci::Position pos) const noexcept; bool Contains(SelectionPosition sp) const noexcept; bool ContainsCharacter(Sci::Position posCharacter) const noexcept; + bool ContainsCharacter(SelectionPosition spCharacter) const noexcept; SelectionSegment Intersect(SelectionSegment check) const noexcept; SelectionPosition Start() const noexcept { return (anchor < caret) ? anchor : caret; |