diff options
Diffstat (limited to 'qt-models/filtermodels.cpp')
-rw-r--r-- | qt-models/filtermodels.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-models/filtermodels.cpp b/qt-models/filtermodels.cpp index 6eb94736d..89fd2853f 100644 --- a/qt-models/filtermodels.cpp +++ b/qt-models/filtermodels.cpp @@ -88,7 +88,7 @@ QVariant FilterModelBase::data(const QModelIndex &index, int role) const return checkState[index.row()] ? Qt::Checked : Qt::Unchecked; } else if (role == Qt::DisplayRole) { QString value = stringList()[index.row()]; - int count = countDives((index.row() == rowCount() - 1) ? "" : value.toUtf8().data()); + int count = countDives((index.row() == rowCount() - 1) ? "" : qPrintable(value)); return value + QString(" (%1)").arg(count); } return QVariant(); |