##// END OF EJS Templates
Creates widget for "general settings" and registers it to the dialog
Creates widget for "general settings" and registers it to the dialog

File last commit:

r465:2ed0448c50bf
r465:2ed0448c50bf
Show More
SqpSettingsGeneralWidget.cpp
14 lines | 332 B | text/x-c | CppLexer
/ gui / src / Settings / SqpSettingsGeneralWidget.cpp
#include "Settings/SqpSettingsGeneralWidget.h"
#include "ui_SqpSettingsGeneralWidget.h"
SqpSettingsGeneralWidget::SqpSettingsGeneralWidget(QWidget *parent)
: QWidget{parent}, ui{new Ui::SqpSettingsGeneralWidget}
{
ui->setupUi(this);
}
SqpSettingsGeneralWidget::~SqpSettingsGeneralWidget() noexcept
{
delete ui;
}