#include "AboutDialog.h"
#include "ui_AboutDialog.h"
#include "cutter.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 "CUTTER_VERSION"
"
"Using r2-" R2_GITTAP
"License
"
"This Software is released under the GNU General Public License v3.0"
"Authors
"
"xarkes, thestr4ng3r, ballessay
"
"Based on work by Hugo Teso <hugo.teso@gmail.org> (originally Iaito)."));
}
AboutDialog::~AboutDialog() {}
void AboutDialog::on_buttonBox_rejected()
{
close();
}