From 1b1895cff4a8348a0aa0d9328f57614febe771a5 Mon Sep 17 00:00:00 2001 From: kervala Date: Sat, 16 Oct 2010 22:19:49 +0200 Subject: [PATCH] Changed: #1038 Implement copy/paste for Linux (patch provided by Naush) --- code/ryzom/client/src/interface_v3/group_editbox.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/ryzom/client/src/interface_v3/group_editbox.cpp b/code/ryzom/client/src/interface_v3/group_editbox.cpp index afbf8e61a..a1c43d7a3 100644 --- a/code/ryzom/client/src/interface_v3/group_editbox.cpp +++ b/code/ryzom/client/src/interface_v3/group_editbox.cpp @@ -332,7 +332,7 @@ void CGroupEditBox::copy() stopParentBlink(); // get the selection and copy it - if (CSystemUtils::copyTextToClipboard(getSelection())) + if (Driver->copyTextToClipboard(getSelection())) nlinfo ("Chat input was copied in the clipboard"); } @@ -352,7 +352,7 @@ void CGroupEditBox::paste() ucstring sString; - if (CSystemUtils::pasteTextFromClipboard(sString)) + if (Driver->pasteTextFromClipboard(sString)) { sint length = (sint)sString.length();