aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-12-01 14:14:43 +0100
committerQt by Nokia <qt-info@nokia.com>2011-12-01 15:05:14 +0100
commit8f945119369d7e42f0c80ecc0485ce53a5ef3aa6 (patch)
treecd05b44b3d26c075aee36e0287841cd4f5c6e280 /src/imports
parent8d7daf8f0cbabbc61657af8ff72731ae99895527 (diff)
Windows: Fix building of XML list model plugin.
Change-Id: Ia070f4b4fd726d201dde7aa43e2c62eacfaff40e Reviewed-by: Kent Hansen <kent.hansen@nokia.com> Reviewed-by: Yunqiao Yin <charles.yin@nokia.com>
Diffstat (limited to 'src/imports')
-rw-r--r--src/imports/xmllistmodel/qdeclarativexmllistmodel_p.h4
-rw-r--r--src/imports/xmllistmodel/xmllistmodel.pro2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/imports/xmllistmodel/qdeclarativexmllistmodel_p.h b/src/imports/xmllistmodel/qdeclarativexmllistmodel_p.h
index c12d3d98fb..dd3b2178a8 100644
--- a/src/imports/xmllistmodel/qdeclarativexmllistmodel_p.h
+++ b/src/imports/xmllistmodel/qdeclarativexmllistmodel_p.h
@@ -70,7 +70,7 @@ struct QDeclarativeXmlQueryResult {
QStringList keyRoleResultsCache;
};
-class Q_DECLARATIVE_EXPORT QDeclarativeXmlListModel : public QListModelInterface, public QDeclarativeParserStatus
+class QDeclarativeXmlListModel : public QListModelInterface, public QDeclarativeParserStatus
{
Q_OBJECT
Q_INTERFACES(QDeclarativeParserStatus)
@@ -149,7 +149,7 @@ private:
Q_DISABLE_COPY(QDeclarativeXmlListModel)
};
-class Q_AUTOTEST_EXPORT QDeclarativeXmlListModelRole : public QObject
+class QDeclarativeXmlListModelRole : public QObject
{
Q_OBJECT
Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged)
diff --git a/src/imports/xmllistmodel/xmllistmodel.pro b/src/imports/xmllistmodel/xmllistmodel.pro
index e3897e04ca..d8121e8db8 100644
--- a/src/imports/xmllistmodel/xmllistmodel.pro
+++ b/src/imports/xmllistmodel/xmllistmodel.pro
@@ -2,7 +2,7 @@ TARGET = qmlxmllistmodelplugin
TARGETPATH = QtQuick/XmlListModel
include(../qimportbase.pri)
-QT+= declarative xmlpatterns declarative-private v8-private core-private
+QT += network declarative xmlpatterns declarative-private v8-private core-private
SOURCES += qdeclarativexmllistmodel.cpp plugin.cpp
HEADERS += qdeclarativexmllistmodel_p.h