Merge pull request #262 from ctrlaltca/fix_134
add success notification to oracle; fixes #134
This commit is contained in:
commit
af4d662c54
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue