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>
16 lines
301 B
C++
16 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;
|
|
}
|