Gui: [skip ci] fix -Wmultichar

This commit is contained in:
wmayer
2021-11-23 00:33:12 +01:00
parent f30fa54038
commit b48647fb1e

View File

@@ -1088,13 +1088,13 @@ static bool checkCanonicalPath(const std::map<App::Document*, bool> &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());
}
}