Mobile: remove dive argument from DiveListModel::insertDive()

Since DiveListModel does not keep its own list of dives anymore,
insertDive() doesn't use the DiveObjectHelper argument. Remove it.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2019-08-13 17:22:15 +02:00 committed by bstoeger
parent feb11f6f5f
commit a4f3580e10
3 changed files with 6 additions and 6 deletions

View file

@ -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);
}