diff options
author | Neil <nyamatongwe@gmail.com> | 2020-05-02 07:55:30 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2020-05-02 07:55:30 +1000 |
commit | eeb78374523313ccb55b55ca54985fb3483615a4 (patch) | |
tree | 73a454274bfe38d1a39f8bb3fce77eae3691364e /src | |
parent | 499580484e1131a80bcc1ff6bc5784ac251c2253 (diff) | |
download | scintilla-mirror-eeb78374523313ccb55b55ca54985fb3483615a4.tar.gz |
Feature [feature-requests:1349] Define CopyAllowLine only on Editor, not subclass.
Diffstat (limited to 'src')
-rw-r--r-- | src/Editor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h index 57f8e5f22..80203d319 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -412,7 +412,7 @@ protected: // ScintillaBase subclass needs access to much of Editor virtual void Cut(); void PasteRectangular(SelectionPosition pos, const char *ptr, Sci::Position len); virtual void Copy() = 0; - virtual void CopyAllowLine(); + void CopyAllowLine(); virtual bool CanPaste(); virtual void Paste() = 0; void Clear(); |