mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
b0cc416954
update() was only called in conjunction with init(). No point in having two functions. The separation between both functions seemed arbitrary anyway. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
29 lines
686 B
C++
29 lines
686 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef DIVECOMPUTERMANAGEMENTDIALOG_H
|
|
#define DIVECOMPUTERMANAGEMENTDIALOG_H
|
|
#include <QDialog>
|
|
#include "ui_divecomputermanagementdialog.h"
|
|
#include "qt-models/divecomputermodel.h"
|
|
|
|
class QModelIndex;
|
|
|
|
class DiveComputerManagementDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static DiveComputerManagementDialog *instance();
|
|
void init();
|
|
|
|
public
|
|
slots:
|
|
void tryRemove(const QModelIndex &index);
|
|
void accept();
|
|
void reject();
|
|
|
|
private:
|
|
explicit DiveComputerManagementDialog(QWidget *parent = 0, Qt::WindowFlags f = 0);
|
|
Ui::DiveComputerManagementDialog ui;
|
|
QScopedPointer<DiveComputerModel> model;
|
|
};
|
|
|
|
#endif // DIVECOMPUTERMANAGEMENTDIALOG_H
|