exportcsv: fix missing return statements

This commit is contained in:
Peinthor Rene
2014-11-23 20:06:45 +01:00
parent 1ce33792c5
commit 73d00b2ae6

View File

@@ -131,7 +131,10 @@ bool ExportCsvDialog::exportQuery(const QString& sQuery, const QString& sFilenam
} else {
QMessageBox::warning(this, QApplication::applicationName(),
tr("Could not open output file: %1").arg(sFilename));
return false;
}
return true;
}
void ExportCsvDialog::accept()