add success notification to oracle

This commit is contained in:
Fabio Bas 2014-08-07 16:10:57 +02:00
parent ef1fbc0db9
commit 2e051c3fd7

View file

@ -418,9 +418,12 @@ bool SaveSetsPage::validatePage()
return false;
}
if (wizard()->importer->saveToFile(fileName))
{
ok = true;
else
QMessageBox::information(this, tr("Success"), tr("The card database has been saved successfully."));
} else {
QMessageBox::critical(this, tr("Error"), tr("The file could not be saved to the desired location."));
}
} while (!ok);
return true;