From 2e051c3fd7eee34ec97e2050f86af34441c71d8b Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Thu, 7 Aug 2014 16:10:57 +0200 Subject: [PATCH] add success notification to oracle --- oracle/src/oraclewizard.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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;