Set default extension when selected filename doesn't have one.

Closes #79
This commit is contained in:
Felix Geyer 2015-07-25 18:14:47 +02:00
parent 0ea64afe92
commit 98417d6465
3 changed files with 11 additions and 4 deletions

View file

@ -330,7 +330,8 @@ bool DatabaseTabWidget::saveDatabaseAs(Database* db)
oldFileName = tr("New database").append(".kdbx");
}
QString fileName = fileDialog()->getSaveFileName(this, tr("Save database as"),
oldFileName, tr("KeePass 2 Database").append(" (*.kdbx)"));
oldFileName, tr("KeePass 2 Database").append(" (*.kdbx)"),
Q_NULLPTR, 0, "kdbx");
if (!fileName.isEmpty()) {
QFileInfo fileInfo(fileName);
QString lockFilePath;
@ -450,7 +451,8 @@ void DatabaseTabWidget::exportToCsv()
}
QString fileName = fileDialog()->getSaveFileName(this, tr("Export database to CSV file"),
QString(), tr("CSV file").append(" (*.csv)"));
QString(), tr("CSV file").append(" (*.csv)"),
Q_NULLPTR, 0, "csv");
if (fileName.isEmpty()) {
return;
}