aboutsummaryrefslogtreecommitdiffstats
path: root/qt-models/tankinfomodel.cpp
diff options
context:
space:
mode:
authorGravatar jan Iversen <jani@libreoffice.org>2018-05-21 17:53:42 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-05-21 12:48:04 -0700
commitb0e48a5e8f8b558ed7377d941ddfb96c02387a1f (patch)
tree077499cc149536b354dfea56540e40fa3e4975aa /qt-models/tankinfomodel.cpp
parent52031f0abaa87d09c56ecaf5872fa58572ecc9f9 (diff)
downloadsubsurface-b0e48a5e8f8b558ed7377d941ddfb96c02387a1f.tar.gz
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>
Diffstat (limited to 'qt-models/tankinfomodel.cpp')
-rw-r--r--qt-models/tankinfomodel.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/qt-models/tankinfomodel.cpp b/qt-models/tankinfomodel.cpp
index d2644a16b..ee970e638 100644
--- a/qt-models/tankinfomodel.cpp
+++ b/qt-models/tankinfomodel.cpp
@@ -15,19 +15,17 @@ const QString &TankInfoModel::biggerString() const
return biggerEntry;
}
-bool TankInfoModel::insertRows(int row, int count, const QModelIndex &parent)
+bool TankInfoModel::insertRows(int, int count, const QModelIndex &parent)
{
- Q_UNUSED(row);
beginInsertRows(parent, rowCount(), rowCount());
rows += count;
endInsertRows();
return true;
}
-bool TankInfoModel::setData(const QModelIndex &index, const QVariant &value, int role)
+bool TankInfoModel::setData(const QModelIndex &index, const QVariant &value, int)
{
//WARN Seems wrong, we need to check for role == Qt::EditRole
- Q_UNUSED(role);
if (index.row() < 0 || index.row() > MAX_TANK_INFO - 1)
return false;
@@ -84,9 +82,8 @@ QVariant TankInfoModel::data(const QModelIndex &index, int role) const
return ret;
}
-int TankInfoModel::rowCount(const QModelIndex &parent) const
+int TankInfoModel::rowCount(const QModelIndex&) const
{
- Q_UNUSED(parent);
return rows + 1;
}