diff options
| author | Neil <nyamatongwe@gmail.com> | 2025-12-08 14:38:07 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2025-12-08 14:38:07 +1100 |
| commit | 724429a7c661eeafe3094a049f747267d0496a69 (patch) | |
| tree | 5e61c00fe32ca0860f0f24446a1421622c13e6a7 /src/Selection.h | |
| parent | 3b9c68ac4239f07d7a9117010778987e5b98502c (diff) | |
| download | scintilla-mirror-724429a7c661eeafe3094a049f747267d0496a69.tar.gz | |
Bug [#2488]. Fix SCI_SETSELECTIONNSTART and SCI_SETSELECTIONNEND.
Diffstat (limited to 'src/Selection.h')
| -rw-r--r-- | src/Selection.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Selection.h b/src/Selection.h index 1a57d2e78..0b3bb9159 100644 --- a/src/Selection.h +++ b/src/Selection.h @@ -156,6 +156,8 @@ struct SelectionRange { SelectionPosition End() const noexcept { return (anchor < caret) ? caret : anchor; } + void StartSet(SelectionPosition sp) noexcept; + void EndSet(SelectionPosition sp) noexcept; void Swap() noexcept; bool Trim(SelectionRange range) noexcept; void Truncate(Sci::Position length) noexcept; |
