aboutsummaryrefslogtreecommitdiffstats
path: root/desktop-widgets/mainwindow.cpp
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2018-10-01 18:12:59 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-10-04 10:22:11 +0200
commit5a787305612c18ee9a442e4dd6067d3c35f05f87 (patch)
treec3456b3c5eb99131480d6a227ac71f4f591c81be /desktop-widgets/mainwindow.cpp
parent3f51849dc3582d34683c111e5fd3a53f414ab1c2 (diff)
downloadsubsurface-5a787305612c18ee9a442e4dd6067d3c35f05f87.tar.gz
Import: Make DiveLogImportDialog modal
By making this modal, we can use a local variable and remove the nasty "deleteLater()" hack to reclaim the resources after the dialog closes. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/mainwindow.cpp')
-rw-r--r--desktop-widgets/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop-widgets/mainwindow.cpp b/desktop-widgets/mainwindow.cpp
index 0ab46fafd..e37c7a7bd 100644
--- a/desktop-widgets/mainwindow.cpp
+++ b/desktop-widgets/mainwindow.cpp
@@ -1811,8 +1811,8 @@ void MainWindow::on_actionImportDiveLog_triggered()
}
if (csvFiles.size()) {
- DiveLogImportDialog *diveLogImport = new DiveLogImportDialog(csvFiles, this);
- diveLogImport->show();
+ DiveLogImportDialog diveLogImport(csvFiles, this);
+ diveLogImport.exec();
}
}