aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4context_p.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@theqtcompany.com>2014-11-11 23:30:54 +0100
committerSimon Hausmann <simon.hausmann@digia.com>2014-11-15 00:32:59 +0100
commitb04b5b57e92af2e036ffb65e2dd7cbba4b6c3c6a (patch)
tree96b37c08126dac0830c9037f4085719261d72b6a /src/qml/jsruntime/qv4context_p.h
parentad342b052473a8ec8c693591a8a882313ccd7d62 (diff)
Remove the remaining uses of Returned<T>
Change-Id: I493b75365d3c6fbf6965986d73e7aa0b659ded67 Reviewed-by: Lars Knoll <lars.knoll@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 9b5c4b0d87..30b578e428 100644
--- a/src/qml/jsruntime/qv4context_p.h
+++ b/src/qml/jsruntime/qv4context_p.h
@@ -130,7 +130,7 @@ struct Q_QML_EXPORT ExecutionContext : public Managed
V4_MANAGED(ExecutionContext, Managed)
Q_MANAGED_TYPE(ExecutionContext)
- Returned<CallContext> *newCallContext(FunctionObject *f, CallData *callData);
+ Heap::CallContext *newCallContext(FunctionObject *f, CallData *callData);
Heap::WithContext *newWithContext(Object *with);
Heap::CatchContext *newCatchContext(String *exceptionVarName, const ValueRef exceptionValue);
Heap::CallContext *newQmlContext(FunctionObject *f, Object *qml);