summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/declarative/creation/tst_creation.cpp
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2010-05-20 08:22:14 (GMT)
committerAlan Alpert <alan.alpert@nokia.com>2010-05-20 08:22:14 (GMT)
commitd92b8e0fdcbfcad0c98b8c51fe2bd6451868af62 (patch)
tree462bf65a95e6de5438c728cbf157994e9684cd37 /tests/benchmarks/declarative/creation/tst_creation.cpp
parenteff255bd29a8cbd09494f9e9480c2e4b07869386 (diff)
parenta948c797e0c45c965ada005b34c274514a3c4d42 (diff)
downloadQt-d92b8e0fdcbfcad0c98b8c51fe2bd6451868af62.zip
Qt-d92b8e0fdcbfcad0c98b8c51fe2bd6451868af62.tar.gz
Qt-d92b8e0fdcbfcad0c98b8c51fe2bd6451868af62.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7
Conflicts: examples/declarative/toys/dynamicscene/qml/itemCreation.js
Diffstat (limited to 'tests/benchmarks/declarative/creation/tst_creation.cpp')
-rw-r--r--tests/benchmarks/declarative/creation/tst_creation.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/tests/benchmarks/declarative/creation/tst_creation.cpp b/tests/benchmarks/declarative/creation/tst_creation.cpp
index 6e9197b..1c3332e 100644
--- a/tests/benchmarks/declarative/creation/tst_creation.cpp
+++ b/tests/benchmarks/declarative/creation/tst_creation.cpp
@@ -50,6 +50,11 @@
#include <QDeclarativeContext>
#include <private/qobject_p.h>
+#ifdef Q_OS_SYMBIAN
+// In Symbian OS test data is located in applications private dir
+#define SRCDIR "."
+#endif
+
class tst_creation : public QObject
{
Q_OBJECT
@@ -91,8 +96,8 @@ public:
TestType(QObject *parent = 0)
: QObject(parent) {}
- QDeclarativeListProperty<QObject> resources() {
- return QDeclarativeListProperty<QObject>(this, 0, resources_append);
+ QDeclarativeListProperty<QObject> resources() {
+ return QDeclarativeListProperty<QObject>(this, 0, resources_append);
}
static void resources_append(QDeclarativeListProperty<QObject> *p, QObject *o) {
@@ -100,7 +105,7 @@ public:
}
};
-tst_creation::tst_creation()
+tst_creation::tst_creation()
{
qmlRegisterType<TestType>("Qt.test", 1, 0, "TestType");
}