aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/qml/qmltime
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmarks/qml/qmltime')
-rw-r--r--tests/benchmarks/qml/qmltime/qmltime.cpp6
-rw-r--r--tests/benchmarks/qml/qmltime/qmltime.pro2
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/benchmarks/qml/qmltime/qmltime.cpp b/tests/benchmarks/qml/qmltime/qmltime.cpp
index bae0b51824..d6b73ed5f4 100644
--- a/tests/benchmarks/qml/qmltime/qmltime.cpp
+++ b/tests/benchmarks/qml/qmltime/qmltime.cpp
@@ -111,10 +111,10 @@ void Timer::run(uint iterations)
QObject *o = m_component->create(&context);
QGraphicsObject *go = qobject_cast<QGraphicsObject *>(o);
- if (m_willparent && go)
+ if (m_willparent && go)
go->setParentItem(&m_item);
delete o;
-
+
runTest(&context, iterations);
}
@@ -135,7 +135,7 @@ void Timer::runTest(QQmlContext *context, uint iterations)
for (uint ii = 0; ii < iterations; ++ii) {
QObject *o = m_component->create(context);
QGraphicsObject *go = qobject_cast<QGraphicsObject *>(o);
- if (m_willparent && go)
+ if (m_willparent && go)
go->setParentItem(&m_item);
delete o;
}
diff --git a/tests/benchmarks/qml/qmltime/qmltime.pro b/tests/benchmarks/qml/qmltime/qmltime.pro
index c151b8d10f..4e3e9471a4 100644
--- a/tests/benchmarks/qml/qmltime/qmltime.pro
+++ b/tests/benchmarks/qml/qmltime/qmltime.pro
@@ -4,6 +4,6 @@ TARGET = qmltime
QT += qml widgets testlib
macx:CONFIG -= app_bundle
-SOURCES += qmltime.cpp
+SOURCES += qmltime.cpp
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0