From 0ba351c9557df442280c414d192c4fcb700baf08 Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Thu, 4 Dec 2014 21:09:50 +0100 Subject: [PATCH] Add "saved" msgbox --- cockatrice/src/window_sets.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cockatrice/src/window_sets.cpp b/cockatrice/src/window_sets.cpp index 15e1f0a3..5fef67a6 100644 --- a/cockatrice/src/window_sets.cpp +++ b/cockatrice/src/window_sets.cpp @@ -6,6 +6,7 @@ #include #include #include +#include WndSets::WndSets(QWidget *parent) : QMainWindow(parent) @@ -85,6 +86,7 @@ WndSets::~WndSets() void WndSets::actSave() { model->save(); + QMessageBox::information(this, tr("Success"), tr("The sets database has been saved successfully.")); } void WndSets::actRestore()