mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
15 lines
264 B
C++
15 lines
264 B
C++
|
#include "preferencesdialog.h"
|
||
|
#include "ui_preferencesdialog.h"
|
||
|
|
||
|
PreferencesDialog::PreferencesDialog(QWidget *parent) :
|
||
|
QDialog(parent),
|
||
|
ui(new Ui::PreferencesDialog)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
PreferencesDialog::~PreferencesDialog()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|