aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4context_p.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@theqtcompany.com>2014-11-11 17:27:49 +0100
committerSimon Hausmann <simon.hausmann@digia.com>2014-11-14 13:00:51 +0100
commit353402344d0bbf20bc0003324ab6e8d7f67ee90d (patch)
tree2ca98c94c37ed26cd9b94c03a92913f0bafac840 /src/qml/jsruntime/qv4context_p.h
parentafbf1f74af678af0eda76035133406aa8883408a (diff)
Replaced more usages of Returned<T> with Heap::T*
Change-Id: I451128ee71610bfeb71139c28da89a00a8209ec6 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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/jsruntime/qv4context_p.h b/src/qml/jsruntime/qv4context_p.h
index a883e1c6b6..9b5c4b0d87 100644
--- a/src/qml/jsruntime/qv4context_p.h
+++ b/src/qml/jsruntime/qv4context_p.h
@@ -131,9 +131,9 @@ struct Q_QML_EXPORT ExecutionContext : public Managed
Q_MANAGED_TYPE(ExecutionContext)
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);
+ Heap::WithContext *newWithContext(Object *with);
+ Heap::CatchContext *newCatchContext(String *exceptionVarName, const ValueRef exceptionValue);
+ Heap::CallContext *newQmlContext(FunctionObject *f, Object *qml);
void createMutableBinding(String *name, bool deletable);