21 lines
296 B
C++
21 lines
296 B
C++
#include "aboutwindow.h"
|
|
#include "ui_aboutwindow.h"
|
|
|
|
AboutWindow::AboutWindow(QWidget *parent) :
|
|
QMainWindow(parent),
|
|
ui(new Ui::AboutWindow)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
AboutWindow::~AboutWindow()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void AboutWindow::on_m_closeButton_clicked()
|
|
{
|
|
this->close();
|
|
}
|
|
|