Do not show '-' for additional info which is not available for an item

I'm only backporting the removal of the '-', not the update for the
line number calculation in Icons View, because this is the safest part
of the patch and also the one that fixes the most annoying part of the
bug.

Thanks to Todd Jennings for the patch!
BUG: 304752
REVIEW: 106304
(cherry picked from commit 20b0cb68bf)
This commit is contained in:
Frank Reininghaus 2012-09-06 07:51:22 +02:00
parent 1bac8668d7
commit 85dfec046f

View file

@ -108,13 +108,6 @@ QHash<QByteArray, QVariant> KNepomukRolesProvider::roleValues(const Nepomuk::Res
}
}
// Assure that empty values get replaced by "-"
foreach (const QByteArray& role, roles) {
if (m_roles.contains(role) && values.value(role).toString().isEmpty()) {
values.insert(role, QLatin1String("-"));
}
}
return values;
}