summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/divecomputermanagementdialog.cpp
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2018-06-15 23:51:28 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-06-17 06:53:13 +0900
commitb0cc4169549e34781e63b25a016b05f1334f33cd (patch)
treecef14aeea09e123d003619a3866ef508d1660e51 /desktop-widgets/divecomputermanagementdialog.cpp
parentf54764cdbc877e6519a464cf2e31a3877a00bc66 (diff)
downloadsubsurface-b0cc4169549e34781e63b25a016b05f1334f33cd.tar.gz
Cleanup: fold DiveComputerManagementDialog::update() into init()
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>
Diffstat (limited to 'desktop-widgets/divecomputermanagementdialog.cpp')
-rw-r--r--desktop-widgets/divecomputermanagementdialog.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/desktop-widgets/divecomputermanagementdialog.cpp b/desktop-widgets/divecomputermanagementdialog.cpp
index 0ff358c22..179a69cfb 100644
--- a/desktop-widgets/divecomputermanagementdialog.cpp
+++ b/desktop-widgets/divecomputermanagementdialog.cpp
@@ -20,7 +20,11 @@ DiveComputerManagementDialog::DiveComputerManagementDialog(QWidget *parent, Qt::
void DiveComputerManagementDialog::init()
{
model.reset(new DiveComputerModel(dcList.dcMap));
+ model->update();
ui.tableView->setModel(model.data());
+ ui.tableView->resizeColumnsToContents();
+ ui.tableView->setColumnWidth(DiveComputerModel::REMOVE, 22);
+ layout()->activate();
}
DiveComputerManagementDialog *DiveComputerManagementDialog::instance()
@@ -29,14 +33,6 @@ DiveComputerManagementDialog *DiveComputerManagementDialog::instance()
return self;
}
-void DiveComputerManagementDialog::update()
-{
- model->update();
- ui.tableView->resizeColumnsToContents();
- ui.tableView->setColumnWidth(DiveComputerModel::REMOVE, 22);
- layout()->activate();
-}
-
void DiveComputerManagementDialog::tryRemove(const QModelIndex &index)
{
if (index.column() != DiveComputerModel::REMOVE)