This reverts commit 6280d9fb0184275843a8f4406c7293e41e65a639, reversing changes made to 3c9c8b8c6a2b2e7430ff09efdc2cc0c1996b16ca.
28 lines
456 B
C++
28 lines
456 B
C++
#include "AboutWindow.h"
|
|
|
|
#include "ui_AboutWindow.h"
|
|
|
|
AboutWindow::AboutWindow(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::AboutWindow)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
setWindowTitle(QString("About QtRocket"));
|
|
|
|
connect(ui->okButton,
|
|
SIGNAL(clicked()),
|
|
this,
|
|
SLOT(onButton_okButton_clicked()));
|
|
}
|
|
|
|
AboutWindow::~AboutWindow()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void AboutWindow::onButton_okButton_clicked()
|
|
{
|
|
this->close();
|
|
}
|