diff options
author | Neil <nyamatongwe@gmail.com> | 2014-07-07 23:51:04 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-07-07 23:51:04 +1000 |
commit | 43ca027041c2e06ddfa6d28ccb7f17a35a08d6cf (patch) | |
tree | 317424bc8009361a68b32466159cd32a2160f138 /src/Selection.h | |
parent | 9206c1ca0542c9f34d3374dd2f8bd7443de9fae2 (diff) | |
download | scintilla-mirror-43ca027041c2e06ddfa6d28ccb7f17a35a08d6cf.tar.gz |
Fix bug where too many characters may be deleted when a rectangular selection is
deleted.
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 9e95fb043..499f83771 100644 --- a/src/Selection.h +++ b/src/Selection.h @@ -115,6 +115,7 @@ struct SelectionRange { anchor.SetVirtualSpace(0); caret.SetVirtualSpace(0); } + void MoveForInsertDelete(bool insertion, int startChange, int length); bool Contains(int pos) const; bool Contains(SelectionPosition sp) const; bool ContainsCharacter(int posCharacter) const; |