aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-02-06 02:16:11 +0000
committernyamatongwe <devnull@localhost>2001-02-06 02:16:11 +0000
commit892ee150a61229998b6bd3e3e495796f899f3025 (patch)
treed776419273883b6292745c8ce829638f827d7766 /src/Editor.h
parentc4a930a94d853bcf4e6eb5dc16c7335d4ef9bde7 (diff)
downloadscintilla-mirror-892ee150a61229998b6bd3e3e495796f899f3025.tar.gz
Made SCI_CANPASTE and EM_CANPASTE work correctly using
IsClipboardFormatAvailable on Windows.
Diffstat (limited to 'src/Editor.h')
-rw-r--r--src/Editor.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h
index 0a37c8b8f..4e1ffc782 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -221,6 +221,7 @@ protected: // ScintillaBase subclass needs access to much of Editor
void Cut();
void PasteRectangular(int pos, const char *ptr, int len);
virtual void Copy() = 0;
+ virtual bool CanPaste();
virtual void Paste() = 0;
void Clear();
void SelectAll();