diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-08-13 21:11:08 +0200 |
---|---|---|
committer | bstoeger <32835590+bstoeger@users.noreply.github.com> | 2019-09-14 13:20:59 +0200 |
commit | 62f1a92068a3322c306f88344bd02836abbade9a (patch) | |
tree | bd98f3c36416fe14252dec6a1734755971d06cda /qt-models/divelistmodel.h | |
parent | ca939300e203c7cad5763e5d58de40e9afde063a (diff) | |
download | subsurface-62f1a92068a3322c306f88344bd02836abbade9a.tar.gz |
Mobile: provide direct access to dives in DiveListModel
Accesses were via DiveObjectHelpers. Provide a direct access to
struct dive *. Use this for the filter - there is no point in
mass generating DiveHelperObjects in the filter code.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models/divelistmodel.h')
-rw-r--r-- | qt-models/divelistmodel.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-models/divelistmodel.h b/qt-models/divelistmodel.h index cb7c902b3..193d728ea 100644 --- a/qt-models/divelistmodel.h +++ b/qt-models/divelistmodel.h @@ -55,6 +55,7 @@ public: void removeDiveById(int id); void updateDive(int i, dive *d); void reload(); + struct dive *getDive(int i); int rowCount(const QModelIndex &parent = QModelIndex()) const; int getDiveIdx(int id) const; QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; |