diff options
Diffstat (limited to 'qt-models/divelistmodel.cpp')
-rw-r--r-- | qt-models/divelistmodel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qt-models/divelistmodel.cpp b/qt-models/divelistmodel.cpp index ef384f4cd..0fe17627e 100644 --- a/qt-models/divelistmodel.cpp +++ b/qt-models/divelistmodel.cpp @@ -136,7 +136,7 @@ DiveListModel::DiveListModel(QObject *parent) : QAbstractListModel(parent) m_instance = this; } -void DiveListModel::insertDive(int i, DiveObjectHelper *) +void DiveListModel::insertDive(int i) { beginInsertRows(QModelIndex(), i, i); endInsertRows(); @@ -163,7 +163,7 @@ void DiveListModel::updateDive(int i, dive *d) // we need to make sure that QML knows that this dive has changed - // the only reliable way I've found is to remove and re-insert it removeDive(i); - insertDive(i, nullptr); // TODO: DiveObjectHelper not needed anymore - remove second argument + insertDive(i); } void DiveListModel::reload() @@ -254,7 +254,7 @@ QString DiveListModel::startAddDive() d->number = nr; d->dc.model = strdup("manually added dive"); append_dive(d); - insertDive(get_idx_by_uniq_id(d->id), new DiveObjectHelper(d)); + insertDive(get_idx_by_uniq_id(d->id)); return QString::number(d->id); } |