summaryrefslogtreecommitdiffstats
path: root/qt-models/treemodel.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/treemodel.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/treemodel.cpp')
-rw-r--r--qt-models/treemodel.cpp15
1 files changed, 4 insertions, 11 deletions
diff --git a/qt-models/treemodel.cpp b/qt-models/treemodel.cpp
index 4439ec54f..5ddd2d3a2 100644
--- a/qt-models/treemodel.cpp
+++ b/qt-models/treemodel.cpp
@@ -12,9 +12,8 @@ TreeItem::~TreeItem()
qDeleteAll(children);
}
-Qt::ItemFlags TreeItem::flags(const QModelIndex &index) const
+Qt::ItemFlags TreeItem::flags(const QModelIndex&) const
{
- Q_UNUSED(index);
return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
}
@@ -25,10 +24,8 @@ int TreeItem::row() const
return 0;
}
-QVariant TreeItem::data(int column, int role) const
+QVariant TreeItem::data(int, int) const
{
- Q_UNUSED(column);
- Q_UNUSED(role);
return QVariant();
}
@@ -57,11 +54,8 @@ QVariant TreeModel::data(const QModelIndex &index, int role) const
return val;
}
-bool TreeItem::setData(const QModelIndex &index, const QVariant &value, int role)
+bool TreeItem::setData(const QModelIndex&, const QVariant&, int)
{
- Q_UNUSED(index);
- Q_UNUSED(value);
- Q_UNUSED(role);
return false;
}
@@ -104,8 +98,7 @@ int TreeModel::rowCount(const QModelIndex &parent) const
return amount;
}
-int TreeModel::columnCount(const QModelIndex &parent) const
+int TreeModel::columnCount(const QModelIndex&) const
{
- Q_UNUSED(parent);
return columns;
}