diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-12-27 09:16:39 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-12-28 06:39:30 -0800 |
commit | 2461a731fc4c485c3d54f4cd5def37aaaf6cb829 (patch) | |
tree | 2e607f2825cb372dc5688b44eac599d8790295c9 /qt-ui/downloadfromdivecomputer.cpp | |
parent | a0d36e2061d4f831e51bc3a87552d58a80c4cf6c (diff) | |
download | subsurface-2461a731fc4c485c3d54f4cd5def37aaaf6cb829.tar.gz |
Progress towards automatic OSTC firmware updates
Better parsing of the website data, a simpe dialog that informs the user
that they should upgrade their firmware.
Still doen't call the right code path to DO the upgrade.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/downloadfromdivecomputer.cpp')
-rw-r--r-- | qt-ui/downloadfromdivecomputer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/downloadfromdivecomputer.cpp b/qt-ui/downloadfromdivecomputer.cpp index b270def5b..bc3fc12e8 100644 --- a/qt-ui/downloadfromdivecomputer.cpp +++ b/qt-ui/downloadfromdivecomputer.cpp @@ -403,7 +403,7 @@ void DownloadFromDCWidget::onDownloadThreadFinished() MainWindow::instance()->dive_list()->selectDive(idx, true); QString dcName = data.devname; if (ostcFirmwareCheck) - ostcFirmwareCheck->checkLatest(data.libdc_firmware); + ostcFirmwareCheck->checkLatest(this, data.libdc_firmware); } } else if (currentState == CANCELLING || currentState == CANCELLED) { if (import_thread_cancelled) { |