diff options
author | Lars Knoll <[email protected]> | 2017-08-09 17:14:11 +0200 |
---|---|---|
committer | Lars Knoll <[email protected]> | 2017-08-10 08:20:15 +0000 |
commit | 4acb72bf35e736f222c90e49b3e84e20355d33a7 (patch) | |
tree | 47980e17c8d9b0d7349fe0291872c1e4d7663ecc /src/qml/jsruntime/qv4globalobject.cpp | |
parent | b459c43c5d119507f888ac9ab1ca96f8e7bb6e34 (diff) |
Cleanup naming of Stack frame structures
Change-Id: I0b392040b6726e6d93f237ccccc9f053256ed819
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 6c24367b67..f8886cb47f 100644 --- a/src/qml/jsruntime/qv4globalobject.cpp +++ b/src/qml/jsruntime/qv4globalobject.cpp @@ -343,7 +343,7 @@ ReturnedValue EvalFunction::evalCall(CallData *callData, bool directCall) const return Encode::undefined(); ExecutionEngine *v4 = engine(); - bool isStrict = v4->currentContext()->d()->v4Function->isStrict(); + bool isStrict = v4->currentStackFrame->v4Function->isStrict(); Scope scope(v4); ScopedContext ctx(scope, v4->currentContext()); |