You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
496 B
31 lines
496 B
#include <stdio.h> |
|
#include <stdlib.h> |
|
|
|
#include "main.h" |
|
#include "licensedialog.h" |
|
#include "ui_licensedialog.h" |
|
|
|
LicenseDialog::LicenseDialog(QWidget *parent) : |
|
QDialog(parent), |
|
ui(new Ui::LicenseDialog) |
|
{ |
|
ui->setupUi(this); |
|
} |
|
|
|
LicenseDialog::~LicenseDialog() |
|
{ |
|
delete ui; |
|
} |
|
|
|
void LicenseDialog::on_buttonBox_accepted() |
|
{ |
|
settings->setValue("acceptedLicenseV1",true); |
|
settings->sync(); |
|
|
|
this->setResult(QDialog::Accepted); |
|
} |
|
|
|
void LicenseDialog::on_buttonBox_rejected() |
|
{ |
|
::exit(0); |
|
}
|
|
|