compile everything with QT_USE_FAST_CONCATENATION

This commit is contained in:
Oswald Buddenhagen
2010-02-04 14:58:33 +01:00
parent 7df3082b6c
commit e70530c5ad
9 changed files with 15 additions and 13 deletions

View File

@@ -803,7 +803,7 @@ QVariant WatchModel::data(const QModelIndex &idx, int role) const
switch (idx.column()) {
case 0:
if (data.name == QLatin1String("*") && item->parent)
return QLatin1Char('*') + item->parent->name;
return QVariant(QLatin1Char('*') + item->parent->name);
return data.name;
case 1: {
int format = m_handler->m_individualFormats.value(data.iname, -1);