aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4context_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2014-11-01 23:29:21 +0100
committerSimon Hausmann <simon.hausmann@digia.com>2014-11-08 16:39:22 +0100
commitda2396478f04aa66d521e53ff24488e72c87d895 (patch)
tree5bce39b395e4b14b7c3e2672c5b01c2060392652 /src/qml/jsruntime/qv4context_p.h
parent84aae25c0b3003fb846568cf26a2c7150db14d9d (diff)
Cleanup RegExp
Move it's Data into the Heap namespace. Change-Id: I4ed6ea481376ae1d0c1fb08b56feee4764083231 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.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/qml/jsruntime/qv4context_p.h b/src/qml/jsruntime/qv4context_p.h
index 310fa6c576..80ed904471 100644
--- a/src/qml/jsruntime/qv4context_p.h
+++ b/src/qml/jsruntime/qv4context_p.h
@@ -142,7 +142,7 @@ struct Q_QML_EXPORT ExecutionContext : public Managed
IsExecutionContext = true
};
- V4_MANAGED2(ExecutionContext, Managed)
+ V4_MANAGED(ExecutionContext, Managed)
Q_MANAGED_TYPE(ExecutionContext)
ExecutionContext(ExecutionEngine *engine, Heap::ExecutionContext::ContextType t)
@@ -183,7 +183,7 @@ struct Q_QML_EXPORT ExecutionContext : public Managed
struct CallContext : public ExecutionContext
{
- V4_MANAGED2(CallContext, ExecutionContext)
+ V4_MANAGED(CallContext, ExecutionContext)
// formals are in reverse order
String * const *formals() const;
@@ -201,18 +201,18 @@ inline ReturnedValue CallContext::argument(int i) {
struct GlobalContext : public ExecutionContext
{
- V4_MANAGED2(GlobalContext, ExecutionContext)
+ V4_MANAGED(GlobalContext, ExecutionContext)
};
struct CatchContext : public ExecutionContext
{
- V4_MANAGED2(CatchContext, ExecutionContext)
+ V4_MANAGED(CatchContext, ExecutionContext)
};
struct WithContext : public ExecutionContext
{
- V4_MANAGED2(WithContext, ExecutionContext)
+ V4_MANAGED(WithContext, ExecutionContext)
};
inline CallContext *ExecutionContext::asCallContext()