diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-11-17 16:23:00 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-11-19 21:13:40 -0800 |
commit | 2d09819ddfc6bbb4eb9bd7127485f42c839fd85b (patch) | |
tree | 9cdd417a2f266faaec73a9a2bfe5f599ac60a82f /qt-models/filtermodels.h | |
parent | cbd98edb73e26b3b3d9068823d9155c61cb3a9b2 (diff) | |
download | subsurface-2d09819ddfc6bbb4eb9bd7127485f42c839fd85b.tar.gz |
Filter: move number of shown dives to core
We mark hidden/shown dives in the core but store the number
of shown dives in the MultiFilterSortModel. Move this datum
to the core for improved locality.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models/filtermodels.h')
-rw-r--r-- | qt-models/filtermodels.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/qt-models/filtermodels.h b/qt-models/filtermodels.h index 65bab27df..a3397dde6 100644 --- a/qt-models/filtermodels.h +++ b/qt-models/filtermodels.h @@ -61,7 +61,6 @@ public: bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const override; bool showDive(const struct dive *d) const; bool updateDive(struct dive *d); // returns true if visibility status changed - int divesDisplayed; bool lessThan(const QModelIndex &, const QModelIndex &) const override; bool diveSiteMode() const; // returns true if we're filtering on dive site const QVector<dive_site *> &filteredDiveSites() const; |