Initial commit
This commit is contained in:
commit
872bb95acf
20 changed files with 1369 additions and 0 deletions
20
aboutdialog.cpp
Normal file
20
aboutdialog.cpp
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#include "aboutdialog.h"
|
||||
#include "ui_aboutdialog.h"
|
||||
|
||||
AboutDialog::AboutDialog(QWidget *parent) :
|
||||
QDialog(parent),
|
||||
ui(new Ui::AboutDialog)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
AboutDialog::~AboutDialog()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
|
||||
void AboutDialog::on_buttonBox_clicked(QAbstractButton *button)
|
||||
{
|
||||
Q_UNUSED(button); /* There is only one button */
|
||||
this->accept();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue