mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 23:23:23 +00:00
Cleanup: use QScopedPointer for DiveComputerManagementDialog::model
Not necessary to do own memory management. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
0bc9edf855
commit
f54764cdbc
2 changed files with 5 additions and 7 deletions
|
@ -6,8 +6,7 @@
|
|||
#include <QMessageBox>
|
||||
#include <QShortcut>
|
||||
|
||||
DiveComputerManagementDialog::DiveComputerManagementDialog(QWidget *parent, Qt::WindowFlags f) : QDialog(parent, f),
|
||||
model(0)
|
||||
DiveComputerManagementDialog::DiveComputerManagementDialog(QWidget *parent, Qt::WindowFlags f) : QDialog(parent, f)
|
||||
{
|
||||
ui.setupUi(this);
|
||||
init();
|
||||
|
@ -20,9 +19,8 @@ DiveComputerManagementDialog::DiveComputerManagementDialog(QWidget *parent, Qt::
|
|||
|
||||
void DiveComputerManagementDialog::init()
|
||||
{
|
||||
delete model;
|
||||
model = new DiveComputerModel(dcList.dcMap);
|
||||
ui.tableView->setModel(model);
|
||||
model.reset(new DiveComputerModel(dcList.dcMap));
|
||||
ui.tableView->setModel(model.data());
|
||||
}
|
||||
|
||||
DiveComputerManagementDialog *DiveComputerManagementDialog::instance()
|
||||
|
|
|
@ -3,9 +3,9 @@
|
|||
#define DIVECOMPUTERMANAGEMENTDIALOG_H
|
||||
#include <QDialog>
|
||||
#include "ui_divecomputermanagementdialog.h"
|
||||
#include "qt-models/divecomputermodel.h"
|
||||
|
||||
class QModelIndex;
|
||||
class DiveComputerModel;
|
||||
|
||||
class DiveComputerManagementDialog : public QDialog {
|
||||
Q_OBJECT
|
||||
|
@ -24,7 +24,7 @@ slots:
|
|||
private:
|
||||
explicit DiveComputerManagementDialog(QWidget *parent = 0, Qt::WindowFlags f = 0);
|
||||
Ui::DiveComputerManagementDialog ui;
|
||||
DiveComputerModel *model;
|
||||
QScopedPointer<DiveComputerModel> model;
|
||||
};
|
||||
|
||||
#endif // DIVECOMPUTERMANAGEMENTDIALOG_H
|
||||
|
|
Loading…
Add table
Reference in a new issue