aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
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.cxx
parentc4a930a94d853bcf4e6eb5dc16c7335d4ef9bde7 (diff)
downloadscintilla-mirror-892ee150a61229998b6bd3e3e495796f899f3025.tar.gz
Made SCI_CANPASTE and EM_CANPASTE work correctly using
IsClipboardFormatAvailable on Windows.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r--src/Editor.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index c638ca5b3..67d8ea856 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -1643,6 +1643,10 @@ void Editor::PasteRectangular(int pos, const char *ptr, int len) {
SetEmptySelection(insertPos);
}
+bool Editor::CanPaste() {
+ return !pdoc->IsReadOnly();
+}
+
void Editor::Clear() {
if (currentPos == anchor) {
DelChar();
@@ -3525,7 +3529,7 @@ long Editor::WndProc(unsigned int iMessage, unsigned long wParam, long lParam) {
case EM_CANPASTE:
case SCI_CANPASTE:
- return !pdoc->IsReadOnly();
+ return CanPaste();
case EM_CHARFROMPOS: {
if (lParam == 0)