diff options
Diffstat (limited to 'qt-models/diveimportedmodel.cpp')
-rw-r--r-- | qt-models/diveimportedmodel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-models/diveimportedmodel.cpp b/qt-models/diveimportedmodel.cpp index 0541d32d3..0e2c07cc6 100644 --- a/qt-models/diveimportedmodel.cpp +++ b/qt-models/diveimportedmodel.cpp @@ -129,6 +129,7 @@ void DiveImportedModel::downloadThreadFinished() // Move the table data from thread to model move_dive_table(&thread.downloadTable, &diveTable); move_dive_site_table(&thread.diveSiteTable, &sitesTable); + deviceTable = std::move(thread.deviceTable); checkStates.resize(diveTable.nr); std::fill(checkStates.begin(), checkStates.end(), true); |