diff options
author | Mitchell Foral <unknown> | 2018-02-24 15:43:07 +1100 |
---|---|---|
committer | Mitchell Foral <unknown> | 2018-02-24 15:43:07 +1100 |
commit | d6240c4eb04f72f5e6f26d7acf1927939ede017c (patch) | |
tree | 786a9c7f392148f7496792a512c6a83bede437e2 /src/Editor.h | |
parent | 62eda0dd434cae09f22f3cdf6988fc77b5c537e6 (diff) | |
download | scintilla-mirror-d6240c4eb04f72f5e6f26d7acf1927939ede017c.tar.gz |
Fix move-extends-selection mode for rectangular and line selections.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h index 709adca39..af7586934 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -312,6 +312,7 @@ protected: // ScintillaBase subclass needs access to much of Editor void ThinRectangularRange(); void InvalidateSelection(SelectionRange newMain, bool invalidateWholeSelection=false); void InvalidateWholeSelection(); + SelectionRange LineSelectionRange(SelectionPosition currentPos_, SelectionPosition anchor_) const; void SetSelection(SelectionPosition currentPos_, SelectionPosition anchor_); void SetSelection(Sci::Position currentPos_, Sci::Position anchor_); void SetSelection(SelectionPosition currentPos_); |