Fix the temporary filename template so that the original suffix is preserved.

This commit is contained in:
Akinori MUSHA 2014-12-22 23:47:16 +09:00
parent eb22f0a2d8
commit e4758c1984

View File

@ -661,7 +661,7 @@ void EditEntryWidget::openAttachment(const QModelIndex& index)
QByteArray attachmentData = m_entryAttachments->value(filename);
// tmp file will be removed once the database (or the application) has been closed
QString tmpFileTemplate = QDir::temp().absoluteFilePath(filename);
QString tmpFileTemplate = QDir::temp().absoluteFilePath(QString("XXXXXX.").append(filename));
QTemporaryFile* file = new QTemporaryFile(tmpFileTemplate, this);
if (!file->open()) {