mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Mobile: replace clear()/addAllDives() pairs by reload()
The clear()/addAllDives() pair was bogus as the former didn't clear the model (this is not possible anymore - the model represents the core dive list) and the latter readded all dives again. Replace this by a reload() function. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
57b77c90b9
commit
0026aa3955
4 changed files with 12 additions and 38 deletions
|
@ -71,10 +71,10 @@ int DiveListSortModel::getIdxForId(int id)
|
|||
return -1;
|
||||
}
|
||||
|
||||
void DiveListSortModel::clear()
|
||||
void DiveListSortModel::reload()
|
||||
{
|
||||
DiveListModel *mySourceModel = qobject_cast<DiveListModel *>(sourceModel());
|
||||
mySourceModel->clear();
|
||||
mySourceModel->reload();
|
||||
}
|
||||
|
||||
// In QML, section headings can only be strings. To identify dives that
|
||||
|
@ -136,25 +136,6 @@ DiveListModel::DiveListModel(QObject *parent) : QAbstractListModel(parent)
|
|||
m_instance = this;
|
||||
}
|
||||
|
||||
void DiveListModel::addDive(const QList<dive *> &listOfDives)
|
||||
{
|
||||
if (listOfDives.isEmpty())
|
||||
return;
|
||||
beginInsertRows(QModelIndex(), rowCount(), rowCount() + listOfDives.count() - 1);
|
||||
endInsertRows();
|
||||
}
|
||||
|
||||
void DiveListModel::addAllDives()
|
||||
{
|
||||
QList<dive *>listOfDives;
|
||||
int i;
|
||||
struct dive *d;
|
||||
for_each_dive (i, d)
|
||||
listOfDives.append(d);
|
||||
addDive(listOfDives);
|
||||
|
||||
}
|
||||
|
||||
void DiveListModel::insertDive(int i, DiveObjectHelper *)
|
||||
{
|
||||
beginInsertRows(QModelIndex(), i, i);
|
||||
|
@ -185,7 +166,7 @@ void DiveListModel::updateDive(int i, dive *d)
|
|||
insertDive(i, nullptr); // TODO: DiveObjectHelper not needed anymore - remove second argument
|
||||
}
|
||||
|
||||
void DiveListModel::clear()
|
||||
void DiveListModel::reload()
|
||||
{
|
||||
beginResetModel();
|
||||
endResetModel();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue