Utils: Push FilePath::toString border line a bit further

... in SaveFile

Change-Id: I80164853b8a756af8c74038b0375c423a6f500e2
Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
This commit is contained in:
hjk
2023-01-13 09:53:45 +01:00
parent 6585b3668c
commit 2ce413112b
4 changed files with 14 additions and 14 deletions

View File

@@ -192,7 +192,7 @@ FileSaver::FileSaver(const FilePath &filePath, QIODevice::OpenMode mode)
m_file.reset(new QFile{filePath.path()});
m_isSafe = false;
} else {
m_file.reset(new SaveFile{filePath.path()});
m_file.reset(new SaveFile(filePath));
m_isSafe = true;
}
if (!m_file->open(QIODevice::WriteOnly | mode)) {