diff options
author | Grace Karanja <gracie.karanja89@gmail.com> | 2015-08-16 11:57:18 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-08-31 15:24:15 -0700 |
commit | 5a7dbf02258d1c5b12f9db01c275e4a0bbe97aff (patch) | |
tree | a13723f51f0f2fca0c82a5d1241d9bca3212f391 /qt-models/divelistmodel.h | |
parent | a734a2ee19cd865e70e8d4380ff7cae5b94b4342 (diff) | |
download | subsurface-5a7dbf02258d1c5b12f9db01c275e4a0bbe97aff.tar.gz |
QML UI: Use AddDive instead of clear dive
No need to clear the dives when adding a new one.
Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com>
Diffstat (limited to 'qt-models/divelistmodel.h')
-rw-r--r-- | qt-models/divelistmodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-models/divelistmodel.h b/qt-models/divelistmodel.h index ad7eb99b6..68022812c 100644 --- a/qt-models/divelistmodel.h +++ b/qt-models/divelistmodel.h @@ -128,7 +128,7 @@ public: int rowCount(const QModelIndex &parent = QModelIndex()) const; QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; QHash<int, QByteArray> roleNames() const; - void clearDives(); + void startAddDive(); private: QList<MobileDive> m_dives; static DiveListModel *m_instance; |