Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Donald Haase
Cockatrice
Commits
cbdb1b8b
Commit
cbdb1b8b
authored
Jan 26, 2015
by
Gavin Bises
Browse files
Inform user of cards.xml save location on success
parent
f51e558e
Changes
1
Show whitespace changes
Inline
Side-by-side
oracle/src/oraclewizard.cpp
View file @
cbdb1b8b
...
...
@@ -445,7 +445,9 @@ bool SaveSetsPage::validatePage()
if
(
wizard
()
->
importer
->
saveToFile
(
fileName
))
{
ok
=
true
;
QMessageBox
::
information
(
this
,
tr
(
"Success"
),
tr
(
"The card database has been saved successfully."
));
QMessageBox
::
information
(
this
,
tr
(
"Success"
),
tr
(
"The card database has been saved successfully to
\n
%1"
).
arg
(
fileName
));
}
else
{
QMessageBox
::
critical
(
this
,
tr
(
"Error"
),
tr
(
"The file could not be saved to %1"
).
arg
(
fileName
));;
if
(
defaultPathCheckBox
->
isChecked
())
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment