This commit is contained in:
Wladimir J. van der Laan
2011-05-12 17:55:24 +02:00
parent 0fd01780e9
commit 3a7abc2c77
16 changed files with 375 additions and 111 deletions

View File

@@ -1,6 +1,19 @@
#include "aboutdialog.h"
#include "ui_aboutdialog.h"
AboutDialog::AboutDialog(QWidget *parent) :
QDialog(parent)
QDialog(parent),
ui(new Ui::AboutDialog)
{
ui->setupUi(this);
}
AboutDialog::~AboutDialog()
{
delete ui;
}
void AboutDialog::on_buttonBox_accepted()
{
close();
}