#include "AboutDialog.h"
#include "ui_AboutDialog.h"
#include "r_version.h"
AboutDialog::AboutDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::AboutDialog)
{
ui->setupUi(this);
setWindowFlags(windowFlags() & (~Qt::WindowContextHelpButtonHint));
ui->label->setText(tr("
Cutter
"
"Version 1.0 alpha
"
"Using r2-" R2_GITTAP
"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() {}
void AboutDialog::on_buttonBox_rejected()
{
close();
}