add tools uis
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#include "Setting.h"
|
||||
#include "ui_Setting.h"
|
||||
|
||||
Setting::Setting(QWidget *parent) :
|
||||
QWidget(parent),
|
||||
ui(new Ui::Setting)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
setWindowTitle(tr("Setting"));
|
||||
|
||||
|
||||
}
|
||||
|
||||
Setting::~Setting()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
Reference in New Issue
Block a user