diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-03-02 04:41:36 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-03-02 04:46:26 -0800 |
commit | 3b37844708d0bcbac3dbec86a44d6dfff69639a0 (patch) | |
tree | db4674939cf3312662ae0eaa959cb6291a8d5462 /qt-models/divelistmodel.h | |
parent | b275e604c13004427e37cc1f42139d2f412158f2 (diff) | |
download | subsurface-3b37844708d0bcbac3dbec86a44d6dfff69639a0.tar.gz |
Add helper functions to identify the position of a dive in the dive list
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
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 fd703c14a..aae3bfc74 100644 --- a/qt-models/divelistmodel.h +++ b/qt-models/divelistmodel.h @@ -38,6 +38,7 @@ public: void clear(); int rowCount(const QModelIndex &parent = QModelIndex()) const; int getDiveId(int idx) const; + int getDiveIdx(int id) const; QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; QHash<int, QByteArray> roleNames() const; QString startAddDive(); |