From 002e6105f61269f1474de878ccdb26205e5b226e Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Wed, 11 Sep 2013 14:36:01 +0200 Subject: Require a ValueScope for ScopedCallData as well This brings things more in line with ScopedValue, and also simplifies cleanup of Scoped values. Change-Id: If5f1466b4e13c629d56c1e7c638937f61ba48f77 Reviewed-by: Simon Hausmann --- src/qml/jsruntime/qv4script.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/qml/jsruntime/qv4script.cpp') diff --git a/src/qml/jsruntime/qv4script.cpp b/src/qml/jsruntime/qv4script.cpp index 57938ff5b7..dd5a3e8a4f 100644 --- a/src/qml/jsruntime/qv4script.cpp +++ b/src/qml/jsruntime/qv4script.cpp @@ -250,7 +250,7 @@ Value Script::run() } else { FunctionObject *f = new (engine->memoryManager) QmlBindingWrapper(scope, vmFunction, qml.value().asObject()); - ScopedCallData callData(scope->engine, 0); + ScopedCallData callData(valueScope, 0); callData->thisObject = Value::undefinedValue(); return Value::fromReturnedValue(f->call(callData)); } -- cgit v1.2.3