diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2009-05-01 04:05:52 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2009-05-01 04:05:52 (GMT) |
commit | 282da61249a7b2ba47afadb94bfcd2517ea60d9a (patch) | |
tree | bc8d6bc6945b57aa7477878c499e76e3268b7f64 /src | |
parent | 3dea1411dbb4fe3a570c2f5516dc6b5991c6db81 (diff) | |
download | Qt-282da61249a7b2ba47afadb94bfcd2517ea60d9a.zip Qt-282da61249a7b2ba47afadb94bfcd2517ea60d9a.tar.gz Qt-282da61249a7b2ba47afadb94bfcd2517ea60d9a.tar.bz2 |
Small fix for QXmlListModel.
Diffstat (limited to 'src')
-rw-r--r-- | src/declarative/extra/qmlxmllistmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/extra/qmlxmllistmodel.cpp b/src/declarative/extra/qmlxmllistmodel.cpp index 6b8f285..badc6fb 100644 --- a/src/declarative/extra/qmlxmllistmodel.cpp +++ b/src/declarative/extra/qmlxmllistmodel.cpp @@ -346,7 +346,7 @@ void QmlXmlListModel::doSubquery(int index) const s.replace(QLatin1String(">"), QLatin1String(">")); s.replace(QLatin1String("&"), QLatin1String("&")); } - resultList << s; + resultList << s.trimmed(); //qDebug() << s; } b.seek(0); |