summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativelist.h
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2010-02-24 17:03:42 +1000
committerAaron Kennedy <aaron.kennedy@nokia.com>2010-02-24 17:04:27 +1000
commit7eb5fc91a30a360507a65c19b6a3b96f757c2c4e (patch)
tree390b0010e1f7be48aeb8cf143d6ec1aaa1a80b7d /src/declarative/qml/qdeclarativelist.h
parent40256d682e1a552c9566a744a66cc6fe008b578b (diff)
Simplify QML element registration headers
Diffstat (limited to 'src/declarative/qml/qdeclarativelist.h')
-rw-r--r--src/declarative/qml/qdeclarativelist.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/declarative/qml/qdeclarativelist.h b/src/declarative/qml/qdeclarativelist.h
index fb877b48bb..8d59384a64 100644
--- a/src/declarative/qml/qdeclarativelist.h
+++ b/src/declarative/qml/qdeclarativelist.h
@@ -42,7 +42,9 @@
#ifndef QDECLARATIVELIST_H
#define QDECLARATIVELIST_H
-#include "qdeclarativeprivate.h"
+#include <QtCore/qglobal.h>
+#include <QtCore/qlist.h>
+#include <QtCore/qvariant.h>
QT_BEGIN_HEADER
@@ -50,6 +52,8 @@ QT_BEGIN_NAMESPACE
QT_MODULE(Declarative)
+class QObject;
+class QMetaObject;
template<typename T>
struct QDeclarativeListProperty {
typedef void (*AppendFunction)(QDeclarativeListProperty<T> *, T*);