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.cpp | |
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.cpp')
-rw-r--r-- | qt-models/divelistmodel.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/qt-models/divelistmodel.cpp b/qt-models/divelistmodel.cpp index 837b75f14..7b7102f7b 100644 --- a/qt-models/divelistmodel.cpp +++ b/qt-models/divelistmodel.cpp @@ -338,9 +338,12 @@ QHash<int, QByteArray> DiveListModel::roleNames() const return roles; } -void DiveListModel::clearDives() +void DiveListModel::startAddDive() { - m_dives.clear(); + struct dive *d; + d = alloc_dive(); + add_single_dive(get_divenr(d), d); + addDive(d); } DiveListModel *DiveListModel::instance() |