diff options
author | Robert C. Helling <helling@atdotde.de> | 2020-11-23 17:17:17 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-12-03 13:26:55 -0800 |
commit | 5e34531e326d8f9b67cddd5f5af34265381be0d0 (patch) | |
tree | 813b870470bb22e6cfa2b2fdb2cd39d68779840f /qt-models/diveimportedmodel.cpp | |
parent | eac59a79d8e9589ccc3f1c8879478fd1b9502eef (diff) | |
download | subsurface-5e34531e326d8f9b67cddd5f5af34265381be0d0.tar.gz |
downloader: wait for download thread
Signed-off-by: Robert C. Helling <helling@atdotde.de>
Diffstat (limited to 'qt-models/diveimportedmodel.cpp')
-rw-r--r-- | qt-models/diveimportedmodel.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qt-models/diveimportedmodel.cpp b/qt-models/diveimportedmodel.cpp index 0e2c07cc6..118b0a419 100644 --- a/qt-models/diveimportedmodel.cpp +++ b/qt-models/diveimportedmodel.cpp @@ -144,6 +144,11 @@ void DiveImportedModel::startDownload() thread.start(); } +void DiveImportedModel::waitForDownload() +{ + thread.wait(); +} + std::tuple<struct dive_table, struct dive_site_table, struct device_table> DiveImportedModel::consumeTables() { beginResetModel(); |