aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp')
-rw-r--r--tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp b/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp
index 206d08e4e9..68da4de37a 100644
--- a/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp
+++ b/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp
@@ -2349,7 +2349,7 @@ static inline bool evaluate_error(QV8Engine *engine, const QV4::Value &o, const
scope.engine->catchException();
return true;
}
- QV4::JSCallData jsCallData(scope, function, 1);
+ QV4::JSCallData jsCallData(scope, 1);
jsCallData->args[0] = o;
jsCallData->thisObject = engine->global();
function->call(jsCallData);
@@ -2379,7 +2379,7 @@ static inline bool evaluate_value(QV8Engine *engine, const QV4::Value &o,
return false;
QV4::ScopedValue value(scope);
- QV4::JSCallData jsCallData(scope, function, 1);
+ QV4::JSCallData jsCallData(scope, 1);
jsCallData->args[0] = o;
jsCallData->thisObject = engine->global();
value = function->call(jsCallData);
@@ -2408,7 +2408,7 @@ static inline QV4::ReturnedValue evaluate(QV8Engine *engine, const QV4::Value &o
}
if (!function)
return QV4::Encode::undefined();
- QV4::JSCallData jsCallData(scope, function, 1);
+ QV4::JSCallData jsCallData(scope, 1);
jsCallData->args[0] = o;
jsCallData->thisObject = engine->global();
QV4::ScopedValue result(scope, function->call(jsCallData));