From f9fda643ab7aa1a66e4816382f0e66499818f42a Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Fri, 6 Sep 2013 12:44:12 +0200 Subject: Change signature of call/construct() to take a pointer to a CallData Change-Id: I5467aadba083e4b01fb0a7170946695207033680 Reviewed-by: Simon Hausmann --- src/qml/jsruntime/qv4objectproto_p.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/qml/jsruntime/qv4objectproto_p.h') diff --git a/src/qml/jsruntime/qv4objectproto_p.h b/src/qml/jsruntime/qv4objectproto_p.h index be51c41580..33a115f203 100644 --- a/src/qml/jsruntime/qv4objectproto_p.h +++ b/src/qml/jsruntime/qv4objectproto_p.h @@ -53,8 +53,8 @@ struct ObjectCtor: FunctionObject { ObjectCtor(ExecutionContext *scope); - static Value construct(Managed *that, const CallData &d); - static Value call(Managed *that, const CallData &d); + static Value construct(Managed *that, CallData *callData); + static Value call(Managed *that, CallData *callData); protected: static const ManagedVTable static_vtbl; -- cgit v1.2.3