diff options
Diffstat (limited to 'editors/tea/files/patch-document.cpp')
-rw-r--r-- | editors/tea/files/patch-document.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/tea/files/patch-document.cpp b/editors/tea/files/patch-document.cpp new file mode 100644 index 000000000000..eedd21ddd106 --- /dev/null +++ b/editors/tea/files/patch-document.cpp @@ -0,0 +1,11 @@ +--- document.cpp.orig 2017-05-22 17:41:11 UTC ++++ document.cpp +@@ -2570,7 +2570,7 @@ void CTEAEdit::rect_sel_cut (bool just_d + cursor.endEditBlock(); + + if (! just_del) +- QApplication::clipboard()->setText (sl_copy.join ('\n')); ++ QApplication::clipboard()->setText (sl_copy.join ("\n")); + } + + |