qt-models: Change Q_UNUSED to no parameter name

C++ permits use of parameters without name, which signals unused

Signed-off-by: Jan Iversen <jani@apache.org>
This commit is contained in:
jan Iversen 2018-05-21 17:53:42 +02:00 committed by Dirk Hohndel
parent 52031f0aba
commit b0e48a5e8f
18 changed files with 39 additions and 90 deletions

View file

@ -231,9 +231,8 @@ bool DivePlannerPointsModel::recalcQ()
return recalc;
}
int DivePlannerPointsModel::columnCount(const QModelIndex &parent) const
int DivePlannerPointsModel::columnCount(const QModelIndex&) const
{
Q_UNUSED(parent);
return COLUMNS; // to disable CCSETPOINT subtract one
}
@ -393,9 +392,8 @@ Qt::ItemFlags DivePlannerPointsModel::flags(const QModelIndex &index) const
return QAbstractItemModel::flags(index);
}
int DivePlannerPointsModel::rowCount(const QModelIndex &parent) const
int DivePlannerPointsModel::rowCount(const QModelIndex&) const
{
Q_UNUSED(parent);
return divepoints.count();
}