aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2005-06-03 23:11:04 +0000
committernyamatongwe <devnull@localhost>2005-06-03 23:11:04 +0000
commit788f2fff04ce33f9c287b8cf79c5c51a90f9f1b4 (patch)
treed75101c07bc9ecfa3feeda46f3edd278f0aa7211 /src
parent32c9949013da8a3e61a112a0c3908fdf87fa6051 (diff)
downloadscintilla-mirror-788f2fff04ce33f9c287b8cf79c5c51a90f9f1b4.tar.gz
Fixed bug 1214067 Alt+Shift+Click not displaying rectangular selection
fully by setting rectangular range in mouse down processing. Hoisted this code into new method SetRectangularRange as used in 4 places.
Diffstat (limited to 'src')
-rw-r--r--src/Editor.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h
index 71953c298..e69778ab7 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -350,6 +350,7 @@ protected: // ScintillaBase subclass needs access to much of Editor
bool SelectionEmpty();
int SelectionStart();
int SelectionEnd();
+ void SetRectangularRange();
void InvalidateSelection(int currentPos_, int anchor_);
void SetSelection(int currentPos_, int anchor_);
void SetSelection(int currentPos_);