proxyroles: Fix warning on unused parameter

This commit is contained in:
Alberto Mardegan 2018-10-06 19:36:37 +03:00 committed by oKcerG
parent f77d371786
commit a4b7b6e1d1
1 changed files with 1 additions and 0 deletions

View File

@ -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);
}