mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +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
|
@ -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
Add a link
Reference in a new issue