From bf3c18787eb3d2985c4972cb84b94362227de16e Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Tue, 8 Mar 2016 02:28:17 -0300 Subject: Silence warnings in treemodel Signed-off-by: Tomaz Canabrava Signed-off-by: Dirk Hohndel --- qt-models/treemodel.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'qt-models') 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; } -- cgit v1.2.3-70-g09d2