mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
15 lines
322 B
C++
15 lines
322 B
C++
|
#include "configuredivecomputerdialog.h"
|
||
|
#include "ui_configuredivecomputerdialog.h"
|
||
|
|
||
|
ConfigureDiveComputerDialog::ConfigureDiveComputerDialog(QWidget *parent) :
|
||
|
QDialog(parent),
|
||
|
ui(new Ui::ConfigureDiveComputerDialog)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
ConfigureDiveComputerDialog::~ConfigureDiveComputerDialog()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|