#include "aboutdialog.h"
#include "ui_aboutdialog.h"
#include "r_userconf.h"
AboutDialog::AboutDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::AboutDialog)
{
ui->setupUi(this);
ui->label->setText("
Iaito
"
"Version 1.0 alpha
"
"Using r2-" R2_VERSION
"License
"
"This Software is released under the GNU General Public License v3.0"
"Authors
"
"Hugo Teso <hugo.teso@gmail.org>\nSoon to be thousands more!");
}
AboutDialog::~AboutDialog()
{
delete ui;
}
void AboutDialog::on_buttonBox_rejected()
{
close();
}