]> git.lyx.org Git - features.git/blobdiff - src/frontends/qt4/GuiClipboard.cpp
Whitespace cleanup
[features.git] / src / frontends / qt4 / GuiClipboard.cpp
index dfb4665233bff29a10247d043f298aca2eb30250..463bad4913e6fa38b0c11c742b8a4dbe91324b34 100644 (file)
@@ -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;