X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiClipboard.cpp;h=463bad4913e6fa38b0c11c742b8a4dbe91324b34;hb=897436efbb9bd641b61467d185a2dfae9839e575;hp=dfb4665233bff29a10247d043f298aca2eb30250;hpb=0e64103f927443835005cda616db620f9b9e007b;p=features.git diff --git a/src/frontends/qt4/GuiClipboard.cpp b/src/frontends/qt4/GuiClipboard.cpp index dfb4665233..463bad4913 100644 --- a/src/frontends/qt4/GuiClipboard.cpp +++ b/src/frontends/qt4/GuiClipboard.cpp @@ -64,7 +64,7 @@ docstring const GuiClipboard::getAsText() const QString const str = qApp->clipboard()->text(QClipboard::Clipboard) .normalized(QString::NormalizationForm_KC); LYXERR(Debug::ACTION) << "GuiClipboard::getAsText(): `" - << fromqstr(str) << "'" << endl; + << fromqstr(str) << "'" << endl; if (str.isNull()) return docstring(); @@ -75,7 +75,7 @@ docstring const GuiClipboard::getAsText() const void GuiClipboard::put(string const & lyx, docstring const & text) { LYXERR(Debug::ACTION) << "GuiClipboard::put(`" << lyx << "' `" - << to_utf8(text) << "')" << endl; + << to_utf8(text) << "')" << endl; // We don't convert the encoding of lyx since the encoding of the // clipboard contents is specified in the data itself QMimeData * data = new QMimeData;