mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-11 16:44:48 -07:00
Refactored DlgAddSet class/functions to DlgAddSetResult
This commit is contained in:
parent
5a975831d4
commit
0ef2b48902
3 changed files with 7 additions and 7 deletions
|
|
@ -4,7 +4,7 @@
|
|||
#include <QPushButton>
|
||||
#include <QVBoxLayout>
|
||||
|
||||
DlgAddSet::DlgAddSet(QWidget *parent, bool success) : QDialog(parent) {
|
||||
DlgAddSetResult::DlgAddSetResult(QWidget *parent, bool success) : QDialog(parent) {
|
||||
status = new QLabel(this);
|
||||
restart = new QLabel(this);
|
||||
|
||||
|
|
@ -31,7 +31,7 @@ DlgAddSet::DlgAddSet(QWidget *parent, bool success) : QDialog(parent) {
|
|||
setLayout(parentLayout);
|
||||
}
|
||||
|
||||
void DlgAddSet::closeDialog()
|
||||
void DlgAddSetResult::closeDialog()
|
||||
{
|
||||
accept();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue