mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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:
parent
52031f0aba
commit
b0e48a5e8f
18 changed files with 39 additions and 90 deletions
|
@ -24,15 +24,13 @@ LocationInformationModel::LocationInformationModel(QObject *obj) : QAbstractTabl
|
|||
{
|
||||
}
|
||||
|
||||
int LocationInformationModel::columnCount(const QModelIndex &parent) const
|
||||
int LocationInformationModel::columnCount(const QModelIndex&) const
|
||||
{
|
||||
Q_UNUSED(parent);
|
||||
return COLUMNS;
|
||||
}
|
||||
|
||||
int LocationInformationModel::rowCount(const QModelIndex &parent) const
|
||||
int LocationInformationModel::rowCount(const QModelIndex&) const
|
||||
{
|
||||
Q_UNUSED(parent);
|
||||
return internalRowCount + 2;
|
||||
}
|
||||
|
||||
|
@ -154,10 +152,8 @@ bool LocationInformationModel::setData(const QModelIndex &index, const QVariant
|
|||
return true;
|
||||
}
|
||||
|
||||
bool LocationInformationModel::removeRows(int row, int count, const QModelIndex & parent)
|
||||
bool LocationInformationModel::removeRows(int row, int, const QModelIndex&)
|
||||
{
|
||||
Q_UNUSED(count);
|
||||
Q_UNUSED(parent);
|
||||
if(row >= rowCount())
|
||||
return false;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue