aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32
diff options
context:
space:
mode:
authorMartijn Laan <1092369+martijnlaan@users.noreply.github.com>2024-06-20 08:23:46 +1000
committerMartijn Laan <1092369+martijnlaan@users.noreply.github.com>2024-06-20 08:23:46 +1000
commit4040c66fc31c7e537d063c65ed1e734e974250c2 (patch)
treea19d212bcf90ba998d282f047741bc214598c64e /win32
parenteee34c2c5053450ec48aea8a9cbff4d5dd140b55 (diff)
downloadscintilla-mirror-4040c66fc31c7e537d063c65ed1e734e974250c2.tar.gz
Feature [feature-requests:#1518]. Cherry pick SCI_CUTALLOWLINE from isscint.
Diffstat (limited to 'win32')
-rw-r--r--win32/ScintillaWin.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx
index decf0e8f6..31d1d826f 100644
--- a/win32/ScintillaWin.cxx
+++ b/win32/ScintillaWin.cxx
@@ -595,7 +595,7 @@ ScintillaWin::ScintillaWin(HWND hwnd) {
cfColumnSelect = RegisterClipboardType(L"MSDEVColumnSelect");
cfBorlandIDEBlockType = RegisterClipboardType(L"Borland IDE Block Type");
- // Likewise for line-copy (copies a full line when no text is selected)
+ // Likewise for line-copy or line-cut (copies or cuts a full line when no text is selected)
cfLineSelect = RegisterClipboardType(L"MSDEVLineSelect");
cfVSLineTag = RegisterClipboardType(L"VisualStudioEditorOperationsLineCutCopyClipboardTag");
hrOle = E_FAIL;