aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/qml/holistic/testtypes.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmarks/qml/holistic/testtypes.cpp')
-rw-r--r--tests/benchmarks/qml/holistic/testtypes.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/benchmarks/qml/holistic/testtypes.cpp b/tests/benchmarks/qml/holistic/testtypes.cpp
index 90576c65b8..e190a29eef 100644
--- a/tests/benchmarks/qml/holistic/testtypes.cpp
+++ b/tests/benchmarks/qml/holistic/testtypes.cpp
@@ -30,8 +30,8 @@
static QJSValue script_api(QQmlEngine *engine, QJSEngine *scriptEngine)
{
- Q_UNUSED(engine)
- Q_UNUSED(scriptEngine)
+ Q_UNUSED(engine);
+ Q_UNUSED(scriptEngine);
static int testProperty = 13;
QJSValue v = scriptEngine->newObject();
@@ -41,8 +41,8 @@ static QJSValue script_api(QQmlEngine *engine, QJSEngine *scriptEngine)
static QObject *qobject_api(QQmlEngine *engine, QJSEngine *scriptEngine)
{
- Q_UNUSED(engine)
- Q_UNUSED(scriptEngine)
+ Q_UNUSED(engine);
+ Q_UNUSED(scriptEngine);
testQObjectApi *o = new testQObjectApi;
o->setQObjectTestProperty(20);
@@ -51,7 +51,7 @@ static QObject *qobject_api(QQmlEngine *engine, QJSEngine *scriptEngine)
static QObject *qobject_api_engine_parent(QQmlEngine *engine, QJSEngine *scriptEngine)
{
- Q_UNUSED(scriptEngine)
+ Q_UNUSED(scriptEngine);
static int testProperty = 26;
testQObjectApi *o = new testQObjectApi(engine);