diff options
author | Lars Knoll <[email protected]> | 2017-08-05 00:03:52 +0200 |
---|---|---|
committer | Lars Knoll <[email protected]> | 2017-08-08 18:58:37 +0000 |
commit | f284d73ccece0490b4a227c788b9415a59a38d9c (patch) | |
tree | 729d1b8ef68c941bdda322fa6dc3c17b62d1a69e /src/qml/jsruntime/qv4globalobject.cpp | |
parent | 68a717a9cd5a5b092268eaddd3552becc55c74ab (diff) |
Avoid creating a separate Scope in the ExecutionContextSaver
There's no reason this class should create a scope on it's own.
Change-Id: I93bddea8be42a908a1aca1bcb0ec867aae0d29f8
Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4globalobject.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4globalobject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4globalobject.cpp b/src/qml/jsruntime/qv4globalobject.cpp index dab6de572d..69d9683eaa 100644 --- a/src/qml/jsruntime/qv4globalobject.cpp +++ b/src/qml/jsruntime/qv4globalobject.cpp @@ -344,7 +344,7 @@ ReturnedValue EvalFunction::evalCall(CallData *callData, bool directCall) const ExecutionEngine *v4 = engine(); Scope scope(v4); - ExecutionContextSaver ctxSaver(scope); + ExecutionContextSaver ctxSaver(scope.engine); ExecutionContext *currentContext = v4->currentContext; ExecutionContext *ctx = currentContext; |