From b48647fb1e9cba752dafef1c41e5744aab96c45b Mon Sep 17 00:00:00 2001 From: wmayer Date: Tue, 23 Nov 2021 00:33:12 +0100 Subject: [PATCH] Gui: [skip ci] fix -Wmultichar --- src/Gui/Document.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Gui/Document.cpp b/src/Gui/Document.cpp index 04ac6abeff..9fbfed5dee 100644 --- a/src/Gui/Document.cpp +++ b/src/Gui/Document.cpp @@ -1088,13 +1088,13 @@ static bool checkCanonicalPath(const std::map &docs) << QObject::tr("Physical path:") << ' ' << v.first << "\n" << QObject::tr("Document:") << ' ' << docName(doc) - << "\n" << ' ' + << "\n " << QObject::tr("Path:") << ' ' << QString::fromUtf8(doc->FileName.getValue()); for (auto d : v.second) { if (d == doc) continue; ts << "\n" << QObject::tr("Document:") << ' ' << docName(d) - << "\n" << ' ' + << "\n " << QObject::tr("Path:") << ' ' << QString::fromUtf8(d->FileName.getValue()); } }