Don't mark 'title' attribute as translatable

'title' is used as a pure id, not displayed anywhere.

Change-Id: Ie3020d04d5702dd79c7d810f83e5a345ee8efb7f
Reviewed-by: Christiaan Janssen <christiaan.janssen@digia.com>
This commit is contained in:
Kai Koehne
2013-06-14 15:51:53 +02:00
parent 1b49b4df11
commit e5b1576dd9
3 changed files with 3 additions and 3 deletions

View File

@@ -624,7 +624,7 @@ const QVariantList BasicTimelineModel::getEventDetails(int index) const
{
QVariantMap valuePair;
valuePair.insert(tr("title"), QVariant(categoryLabel(d->eventDict[eventId].eventType)));
valuePair.insert(QLatin1String("title"), QVariant(categoryLabel(d->eventDict[eventId].eventType)));
result << valuePair;
}