diff options
Diffstat (limited to 'qt-ui/downloadfromdivecomputer.cpp')
-rw-r--r-- | qt-ui/downloadfromdivecomputer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qt-ui/downloadfromdivecomputer.cpp b/qt-ui/downloadfromdivecomputer.cpp index e9cb94220..4e4a24f7b 100644 --- a/qt-ui/downloadfromdivecomputer.cpp +++ b/qt-ui/downloadfromdivecomputer.cpp @@ -54,6 +54,7 @@ DownloadFromDCWidget::DownloadFromDCWidget(QWidget *parent, Qt::WindowFlags f) : ui.progressBar->setMinimum(0); ui.progressBar->setMaximum(100); diveImportedModel = new DiveImportedModel(this); + ui.downloadedView->setModel(diveImportedModel); progress_bar_text = ""; @@ -270,7 +271,7 @@ void DownloadFromDCWidget::on_cancel_clicked() updateState(CANCELLING); } -void DownloadFromDCWidget::on_ok_clicked() +void DownloadFromDCWidget::on_startDownload_clicked() { updateState(DOWNLOADING); |