forked from qt-creator/qt-creator
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:
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user