Merge remote-tracking branch 'origin/4.12'

Change-Id: I296a61fe43aea134de9e7a6ee8042af3f45f5e99
This commit is contained in:
Eike Ziller
2020-04-23 11:09:15 +02:00
63 changed files with 616 additions and 223 deletions

View File

@@ -170,7 +170,7 @@ static FilePath jsonObjectFilename(const QJsonObject &object)
const QString workingDir = QDir::fromNativeSeparators(object["directory"].toString());
FilePath fileName = FilePath::fromString(QDir::fromNativeSeparators(object["file"].toString()));
if (fileName.toFileInfo().isRelative())
fileName = FilePath::fromString(workingDir + "/" + fileName.toString()).canonicalPath();
fileName = FilePath::fromString(QDir::cleanPath(workingDir + "/" + fileName.toString()));
return fileName;
}