diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-03-18 19:35:25 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-03-18 13:27:16 -0700 |
commit | 9310d72943390f95d6742c2d5b40f025a40b4008 (patch) | |
tree | 6c6e4226a75893b5736acb89c473bd7dcac6d532 /qt-models | |
parent | 9722f04e40a575ca757868a66cecfdcee801831c (diff) | |
download | subsurface-9310d72943390f95d6742c2d5b40f025a40b4008.tar.gz |
models: update divesite-model when clearing/updating dive model
When the dive list is cleared or updated, the entries in the
divesite-model become stale and therefore the divesite-model
(with the actual name LocationInformationModel) also must be
updated. This was done manually in some parts of the code and
forgotten in others. Therefore, do it directly in the clear()
and reset() function of the dive list-model.
This might be a bit of a layering violation: why should one
model call into another if they are not in parent/child
relationship? However, this seems easier than introducing
a global "reset dives" function that coordinates the models.
Moreover, it does not appear 100% safe: if the clearing of
the divesite model causes accesses to the divelist-model,
they happen in the midst of a model reset and we had horrible
bugs with that kind of things. However, I don't think that
should happen.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models')
-rw-r--r-- | qt-models/divetripmodel.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-models/divetripmodel.cpp b/qt-models/divetripmodel.cpp index 677be21fb..e5a1b8cc5 100644 --- a/qt-models/divetripmodel.cpp +++ b/qt-models/divetripmodel.cpp @@ -474,6 +474,7 @@ void DiveTripModelBase::clear() beginResetModel(); clear_dive_file_data(); clearData(); + LocationInformationModel::instance()->update(); oldCurrent = nullptr; emit diveListNotifier.divesSelected({}); // Inform profile, etc of changed selection endResetModel(); @@ -485,6 +486,7 @@ void DiveTripModelBase::reset() beginResetModel(); clearData(); populate(); + LocationInformationModel::instance()->update(); endResetModel(); initSelection(); emit diveListNotifier.numShownChanged(); |