diff --git a/oracle/src/oraclewizard.cpp b/oracle/src/oraclewizard.cpp index 2a597d45..b43f1c31 100644 --- a/oracle/src/oraclewizard.cpp +++ b/oracle/src/oraclewizard.cpp @@ -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;