summaryrefslogtreecommitdiffstats
path: root/qt-models
diff options
context:
space:
mode:
Diffstat (limited to 'qt-models')
-rw-r--r--qt-models/treemodel.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/qt-models/treemodel.cpp b/qt-models/treemodel.cpp
index 558f690b2..01db3520f 100644
--- a/qt-models/treemodel.cpp
+++ b/qt-models/treemodel.cpp
@@ -13,6 +13,7 @@ TreeItem::~TreeItem()
Qt::ItemFlags TreeItem::flags(const QModelIndex &index) const
{
+ Q_UNUSED(index);
return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
}
@@ -25,6 +26,8 @@ int TreeItem::row() const
QVariant TreeItem::data(int column, int role) const
{
+ Q_UNUSED(column);
+ Q_UNUSED(role);
return QVariant();
}
@@ -55,6 +58,9 @@ QVariant TreeModel::data(const QModelIndex &index, int role) const
bool TreeItem::setData(const QModelIndex &index, const QVariant &value, int role)
{
+ Q_UNUSED(index);
+ Q_UNUSED(value);
+ Q_UNUSED(role);
return false;
}
@@ -99,5 +105,6 @@ int TreeModel::rowCount(const QModelIndex &parent) const
int TreeModel::columnCount(const QModelIndex &parent) const
{
+ Q_UNUSED(parent);
return columns;
}