aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authorMarko Njezic <unknown>2011-06-06 23:36:54 +0200
committerMarko Njezic <unknown>2011-06-06 23:36:54 +0200
commitcdc087403e5f0c230cf4b0fc6f9049655934eb69 (patch)
tree1b996cbb6e29f4aa025be8e82e1e45c44b36800d /src/Editor.h
parent057e7e0cf75dd1c25afd17a77852102ad8200536 (diff)
downloadscintilla-mirror-cdc087403e5f0c230cf4b0fc6f9049655934eb69.tar.gz
Fix line selection of wrapped lines. Bug #3312763.
Diffstat (limited to 'src/Editor.h')
-rw-r--r--src/Editor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Editor.h b/src/Editor.h
index 5c01ee83d..877f41443 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -202,7 +202,7 @@ protected: // ScintillaBase subclass needs access to much of Editor
SelectionPosition posDrop;
int hotSpotClickPos;
int lastXChosen;
- int lineAnchor;
+ int lineAnchorPos;
int originalAnchorPos;
int wordSelectAnchorStartPos;
int wordSelectAnchorEndPos;
@@ -492,7 +492,7 @@ protected: // ScintillaBase subclass needs access to much of Editor
bool PointInSelection(Point pt);
bool PointInSelMargin(Point pt);
Window::Cursor GetMarginCursor(Point pt);
- void LineSelection(int lineCurrent_, int lineAnchor_);
+ void LineSelection(int lineCurrentPos_, int lineAnchorPos_);
void WordSelection(int pos);
void DwellEnd(bool mouseMoved);
void MouseLeave();