From 3cd6cc9195cb2ef3bd2a953201305a4f291ad8cb Mon Sep 17 00:00:00 2001 From: Peng Liu Date: Mon, 15 Sep 2014 06:15:18 -0400 Subject: [PATCH] Added the location Oracle attempted to save cards.xml to the failure message. --- oracle/src/oraclewizard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oracle/src/oraclewizard.cpp b/oracle/src/oraclewizard.cpp index c1c8b982..6a5b2b79 100644 --- a/oracle/src/oraclewizard.cpp +++ b/oracle/src/oraclewizard.cpp @@ -432,7 +432,7 @@ bool SaveSetsPage::validatePage() ok = true; 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.")); + QMessageBox::critical(this, tr("Error"), tr("The file could not be saved to %1").arg(fileName));; if (defaultPathCheckBox->isChecked()) defaultPathCheckBox->setChecked(false); }