aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2010-12-11 11:05:12 +1100
committernyamatongwe <devnull@localhost>2010-12-11 11:05:12 +1100
commit1e03c3b80c7543fa94e9d9da55a618e848089feb (patch)
treee37735b7a8f34312173185f8daed3f172bd1033c /src/Editor.h
parent827332df11d2ec8436d287473f916274822dd139 (diff)
downloadscintilla-mirror-1e03c3b80c7543fa94e9d9da55a618e848089feb.tar.gz
Make multiple selection multi-paste work when multi-type is off. Bug #3126221.
Diffstat (limited to 'src/Editor.h')
-rw-r--r--src/Editor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h
index 50948e2e3..288addee0 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -391,7 +391,7 @@ protected: // ScintillaBase subclass needs access to much of Editor
void AddChar(char ch);
virtual void AddCharUTF(char *s, unsigned int len, bool treatAsDBCS=false);
void InsertPaste(SelectionPosition selStart, const char *text, int len);
- void ClearSelection();
+ void ClearSelection(bool retainMultipleSelections=false);
void ClearAll();
void ClearDocumentStyle();
void Cut();