diff options
author | Lars Knoll <[email protected]> | 2014-05-06 14:34:28 +0200 |
---|---|---|
committer | Simon Hausmann <[email protected]> | 2014-07-22 13:49:12 +0200 |
commit | 9afc7d9a53ad86e548e2d239ff012bed15eb52ba (patch) | |
tree | 509bb1d404858904351c69e190ab56a1bf3e3045 /src/qml/jsruntime/qv4context_p.h | |
parent | d33b68e2dfa8aae94f2a01cf603892099c97ea40 (diff) |
Rename V4_MANAGED_NEW back to V4_MANAGED
Change-Id: I3d68fdf38bb2d42f70cbb1297a88eeb8d9316911
Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4context_p.h')
-rw-r--r-- | src/qml/jsruntime/qv4context_p.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qml/jsruntime/qv4context_p.h b/src/qml/jsruntime/qv4context_p.h index 2a6360ec39..a713a38141 100644 --- a/src/qml/jsruntime/qv4context_p.h +++ b/src/qml/jsruntime/qv4context_p.h @@ -119,7 +119,7 @@ struct Q_QML_EXPORT ExecutionContext : public Managed int lineNumber; } __data; - V4_MANAGED_NEW + V4_MANAGED Q_MANAGED_TYPE(ExecutionContext) ExecutionContext(ExecutionEngine *engine, ContextType t) @@ -209,7 +209,7 @@ struct GlobalContext : public ExecutionContext struct { Object *global; } __data; - V4_MANAGED_NEW + V4_MANAGED GlobalContext(ExecutionEngine *engine); }; @@ -224,7 +224,7 @@ struct CatchContext : public ExecutionContext StringValue exceptionVarName; Value exceptionValue; } __data; - V4_MANAGED_NEW + V4_MANAGED CatchContext(ExecutionEngine *engine, const StringRef exceptionVarName, const ValueRef exceptionValue); }; @@ -237,7 +237,7 @@ struct WithContext : public ExecutionContext struct { Object *withObject; } __data; - V4_MANAGED_NEW + V4_MANAGED WithContext(ExecutionEngine *engine, ObjectRef with); }; |