mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
a600ea5201
The template_options struct holds the settings variables in the code. Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com> Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
15 lines
301 B
C++
15 lines
301 B
C++
#include "templateedit.h"
|
|
#include "ui_templateedit.h"
|
|
|
|
TemplateEdit::TemplateEdit(QWidget *parent, struct template_options *templateOptions) :
|
|
QDialog(parent),
|
|
ui(new Ui::TemplateEdit)
|
|
{
|
|
ui->setupUi(this);
|
|
this->templateOptions = templateOptions;
|
|
}
|
|
|
|
TemplateEdit::~TemplateEdit()
|
|
{
|
|
delete ui;
|
|
}
|