diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-12-24 10:14:37 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-01-07 09:33:52 -0800 |
commit | b5704ddb57d905e66f5f71558bb07b2f165913a9 (patch) | |
tree | 822049f06d2c9e97dacb8f306ccd28f1e989943b /qt-models/filtermodels.h | |
parent | 4d06ddd72351f7804acdaec81f0400a735581229 (diff) | |
download | subsurface-b5704ddb57d905e66f5f71558bb07b2f165913a9.tar.gz |
Cleanup: Remove MultiFilterSortModel::model
The source-model was cached in MultiFilterSortModel. For simplicity,
remove that and simply access via DiveTripModel::instance(). There
is only one instance where the cached model was used: when comparing
items for sorting. Thus, in indirection is added in a "hot" path.
Nevertheless, this will dwarf against the cost of string comparison.
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 61b82be33..442bdec5e 100644 --- a/qt-models/filtermodels.h +++ b/qt-models/filtermodels.h @@ -58,7 +58,6 @@ signals: private: MultiFilterSortModel(QObject *parent = 0); struct dive_site *curr_dive_site; - DiveTripModel *model; FilterData filterData; }; |