mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Create a dialog for reading and writing settings to and from dive computers, with a menu entry in MainWindow to open the dialog. I will build up on this dialog and change it as needed. Signed-off-by: Joseph W. Joshua <joejoshw@gmail.com> Signed-off-by: Thiago Macieira <thiago@macieira.org>
14 lines
322 B
C++
14 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;
|
|
}
|