Replaced one-char-strings

Change-Id: I873606e5a5cd92c0987bc89bd2bfa085a384b797
Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
This commit is contained in:
Robert Loehning
2012-03-14 15:24:07 +01:00
committed by Robert Löhning
parent be4adfac23
commit b2760bf2ef
2 changed files with 2 additions and 2 deletions

View File

@@ -212,7 +212,7 @@ QModelIndex DataModel::indexForObject(const Function *function) const
static QString noWrap(const QString &str)
{
QString escapedStr = str;
return escapedStr.replace("-", "&#8209;");
return escapedStr.replace(QLatin1Char('-'), "&#8209;");
}
QVariant DataModel::data(const QModelIndex &index, int role) const