diff options
author | Bea Lam <bea.lam@nokia.com> | 2010-03-25 00:58:56 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2010-03-25 23:18:02 (GMT) |
commit | 7b42ee836b8cc1ae345d1d24d4419f0c6b77c97d (patch) | |
tree | 35686476a827cf904d52497dde8ec00adb871bee /src | |
parent | 75e793d0ff07fd094918cf00c4cd0e10dad6bfa8 (diff) | |
download | Qt-7b42ee836b8cc1ae345d1d24d4419f0c6b77c97d.zip Qt-7b42ee836b8cc1ae345d1d24d4419f0c6b77c97d.tar.gz Qt-7b42ee836b8cc1ae345d1d24d4419f0c6b77c97d.tar.bz2 |
Clean up
Diffstat (limited to 'src')
-rw-r--r-- | src/declarative/util/qdeclarativexmllistmodel.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/declarative/util/qdeclarativexmllistmodel.cpp b/src/declarative/util/qdeclarativexmllistmodel.cpp index f7beeaa..e148469 100644 --- a/src/declarative/util/qdeclarativexmllistmodel.cpp +++ b/src/declarative/util/qdeclarativexmllistmodel.cpp @@ -173,22 +173,6 @@ public: return job.queryId; } - QList<QList<QVariant> > modelData() { - QMutexLocker locker(&m_mutex); - return m_modelData; - } - - QList<QDeclarativeXmlListRange> insertedItemRanges() { - QMutexLocker locker(&m_mutex); - return m_insertedItemRanges; - } - - QList<QDeclarativeXmlListRange> removedItemRanges() { - QMutexLocker locker(&m_mutex); - return m_removedItemRanges; - } - - Q_SIGNALS: void queryCompleted(const QDeclarativeXmlQueryResult &); @@ -254,13 +238,10 @@ void QDeclarativeXmlQuery::doQueryJob() query.setQuery(job.namespaces + job.query); query.evaluateTo(&r); - //qDebug() << r; - //always need a single root element QByteArray xml = "<dummy:items xmlns:dummy=\"http://qtsotware.com/dummy\">\n" + r.toUtf8() + "</dummy:items>"; QBuffer b(&xml); b.open(QIODevice::ReadOnly); - //qDebug() << xml; QString namespaces = QLatin1String("declare namespace dummy=\"http://qtsotware.com/dummy\";\n") + job.namespaces; QString prefix = QLatin1String("doc($inputDocument)/dummy:items") + @@ -278,7 +259,6 @@ void QDeclarativeXmlQuery::doQueryJob() if (item.isAtomicValue()) count = item.toAtomicValue().toInt(); } - //qDebug() << count; job.data = xml; m_prefix = namespaces + prefix + QLatin1Char('/'); |