diff options
author | Kent Hansen <kent.hansen@nokia.com> | 2011-11-22 13:26:20 +0100 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2011-11-24 07:43:29 +0100 |
commit | dcc810fd6ae3042fb2877d617e21818b81b33ead (patch) | |
tree | 912db87a9431e751280c7f674278fc6c5ff1db45 /src/declarative/qml/qdeclarativeworkerscript.cpp | |
parent | 89e1cba2f671c1c46f81dcd36a168f469315c8ee (diff) | |
download | qtdeclarative-dcc810fd6ae3042fb2877d617e21818b81b33ead.tar.gz |
Move QDeclarativeListModel and friends from util/ to qml/
QDeclarativeWorkerScript depends on QDeclarativeListModel et al, so the latter
should also reside under qml/.
Note that QDeclarativeOpenMetaObject also had to be moved, since
QDeclarativeListModel depends on it.
Change-Id: I164cba0e530d22b5771056a2acde12a18d5e83e1
Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
Diffstat (limited to 'src/declarative/qml/qdeclarativeworkerscript.cpp')
-rw-r--r-- | src/declarative/qml/qdeclarativeworkerscript.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/qml/qdeclarativeworkerscript.cpp b/src/declarative/qml/qdeclarativeworkerscript.cpp index 98aaddceef..793bc24aa3 100644 --- a/src/declarative/qml/qdeclarativeworkerscript.cpp +++ b/src/declarative/qml/qdeclarativeworkerscript.cpp @@ -40,8 +40,8 @@ ****************************************************************************/ #include "qdeclarativeworkerscript_p.h" -#include <private/qdeclarativelistmodel_p.h> -#include <private/qdeclarativelistmodelworkeragent_p.h> +#include "qdeclarativelistmodel_p.h" +#include "qdeclarativelistmodelworkeragent_p.h" #include "qdeclarativeengine_p.h" #include "qdeclarativeexpression_p.h" |