From a4b7b6e1d1d4aa160312584773bf07b196703291 Mon Sep 17 00:00:00 2001 From: Alberto Mardegan Date: Sat, 6 Oct 2018 19:36:37 +0300 Subject: [PATCH] proxyroles: Fix warning on unused parameter --- proxyroles/singlerole.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/proxyroles/singlerole.cpp b/proxyroles/singlerole.cpp index d90221f..f142588 100644 --- a/proxyroles/singlerole.cpp +++ b/proxyroles/singlerole.cpp @@ -43,6 +43,7 @@ QStringList SingleRole::names() QVariant SingleRole::data(const QModelIndex &sourceIndex, const QQmlSortFilterProxyModel &proxyModel, const QString &name) { + Q_UNUSED(name); return data(sourceIndex, proxyModel); }