Add "saved" msgbox
This commit is contained in:
parent
00a5ed0b79
commit
0ba351c955
1 changed files with 2 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
|||
#include <QHeaderView>
|
||||
#include <QPushButton>
|
||||
#include <QItemSelection>
|
||||
#include <QMessageBox>
|
||||
|
||||
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()
|
||||
|
|
Loading…
Reference in a new issue