aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4context_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2014-07-24 22:32:38 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2014-11-04 20:16:58 +0100
commit43296bb5fb578cc64b14fb4480e6daa87bb6491d (patch)
tree6978a08c377bd1c073107496b78a2ad27036eee4 /src/qml/jsruntime/qv4context_p.h
parent6b7c3ea49c3475a71c582dd8c4a54429e543ec1c (diff)
Remove some unneeded reinterpret_cast's
Change-Id: I29ebc1f06bb3f0d20e6e21840c7fe326a0f4546d Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4context_p.h')
-rw-r--r--src/qml/jsruntime/qv4context_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4context_p.h b/src/qml/jsruntime/qv4context_p.h
index 4f7cdd8105..b4c78c3736 100644
--- a/src/qml/jsruntime/qv4context_p.h
+++ b/src/qml/jsruntime/qv4context_p.h
@@ -127,7 +127,7 @@ struct Q_QML_EXPORT ExecutionContext : public Managed
engine->current = this;
}
- Returned<ExecutionContext> *newCallContext(FunctionObject *f, CallData *callData);
+ Returned<CallContext> *newCallContext(FunctionObject *f, CallData *callData);
Returned<WithContext> *newWithContext(Object *with);
Returned<CatchContext> *newCatchContext(String *exceptionVarName, const ValueRef exceptionValue);
Returned<CallContext> *newQmlContext(FunctionObject *f, Object *qml);