aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4context.cpp
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@theqtcompany.com>2014-11-11 13:34:18 +0100
committerSimon Hausmann <simon.hausmann@digia.com>2014-11-12 17:55:57 +0100
commitfaf13a3aa0c97b7386e44d02f323a9156a733c9f (patch)
treeee3741b0724f52c3c1e66cd8963022fc877ab3b8 /src/qml/jsruntime/qv4context.cpp
parent9bad6eea0f30f6a6c1878c2773dc39071cb41584 (diff)
Ported most ExecutionEnginew::new* factory methods away from Returned<T>
We don't need Returned<T> anymore with the QV4:: vs. Heap:: separation. Eliminating Returned<T> simplifies also some code. Change-Id: Ic2a9cd3c1a94f2ea37b539d3984d63997121c2b9 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4context.cpp')
-rw-r--r--src/qml/jsruntime/qv4context.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4context.cpp b/src/qml/jsruntime/qv4context.cpp
index a73b85d580..d360ccdc57 100644
--- a/src/qml/jsruntime/qv4context.cpp
+++ b/src/qml/jsruntime/qv4context.cpp
@@ -112,7 +112,7 @@ void ExecutionContext::createMutableBinding(String *name, bool deletable)
if (ctx->d()->type >= Heap::ExecutionContext::Type_CallContext) {
CallContext *c = static_cast<CallContext *>(ctx.getPointer());
if (!c->d()->activation)
- c->d()->activation = d()->engine->newObject()->getPointer()->d();
+ c->d()->activation = d()->engine->newObject();
activation = c->d()->activation;
break;
}