aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4value_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4value_p.h')
-rw-r--r--src/qml/jsruntime/qv4value_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qml/jsruntime/qv4value_p.h b/src/qml/jsruntime/qv4value_p.h
index 20b78a4da1..73d5d0479d 100644
--- a/src/qml/jsruntime/qv4value_p.h
+++ b/src/qml/jsruntime/qv4value_p.h
@@ -320,11 +320,11 @@ inline ErrorObject *Value::asErrorObject() const
}
// ###
-inline Value Managed::construct(Value *args, int argc) {
- return vtbl->construct(this, args, argc);
+inline Value Managed::construct(const CallData &d) {
+ return vtbl->construct(this, d);
}
-inline Value Managed::call(const Value &thisObject, Value *args, int argc) {
- return vtbl->call(this, thisObject, args, argc);
+inline Value Managed::call(const CallData &d) {
+ return vtbl->call(this, d);
}
struct Q_QML_PRIVATE_EXPORT PersistentValuePrivate