summaryrefslogtreecommitdiffstats
path: root/qt-models/divetripmodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qt-models/divetripmodel.cpp')
-rw-r--r--qt-models/divetripmodel.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/qt-models/divetripmodel.cpp b/qt-models/divetripmodel.cpp
index d2e6a634d..bcdf14377 100644
--- a/qt-models/divetripmodel.cpp
+++ b/qt-models/divetripmodel.cpp
@@ -376,6 +376,7 @@ void DiveTripModelBase::clear()
{
beginResetModel();
clear_dive_file_data();
+ clearData();
emit diveListNotifier.divesSelected({}, nullptr); // Inform profile, etc of changed selection
endResetModel();
}
@@ -607,6 +608,11 @@ int DiveTripModelTree::rowCount(const QModelIndex &parent) const
return entry.d_or_t.trip ? entry.dives.size() : 0;
}
+void DiveTripModelList::clearData()
+{
+ items.clear();
+}
+
static const quintptr noParent = ~(quintptr)0; // This is the "internalId" marker for top-level item
QModelIndex DiveTripModelTree::index(int row, int column, const QModelIndex &parent) const
@@ -1238,6 +1244,11 @@ int DiveTripModelList::rowCount(const QModelIndex &parent) const
return parent.isValid() ? 0 : items.size();
}
+void DiveTripModelTree::clearData()
+{
+ items.clear();
+}
+
QModelIndex DiveTripModelList::index(int row, int column, const QModelIndex &parent) const
{
if (!hasIndex(row, column, parent))