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

@@ -1680,7 +1680,7 @@ void QmlProfilerEventList::load()
// find v8events' children and parents // find v8events' children and parents
foreach (int parentIndex, childrenIndexes.keys()) { foreach (int parentIndex, childrenIndexes.keys()) {
QStringList childrenStrings = childrenIndexes.value(parentIndex).split(","); QStringList childrenStrings = childrenIndexes.value(parentIndex).split(QLatin1Char(','));
QStringList childrenTimesStrings = childrenTimes.value(parentIndex).split(", "); QStringList childrenTimesStrings = childrenTimes.value(parentIndex).split(", ");
QStringList parentTimesStrings = parentTimes.value(parentIndex).split(", "); QStringList parentTimesStrings = parentTimes.value(parentIndex).split(", ");
for (int ndx = 0; ndx < childrenStrings.count(); ndx++) { for (int ndx = 0; ndx < childrenStrings.count(); ndx++) {

View File

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