diff options
author | Lars Knoll <lars.knoll@digia.com> | 2013-09-11 14:47:34 +0200 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-09-18 13:13:23 +0200 |
commit | d6837e9ca301e7b6c792e3d24db14fb7bab2db60 (patch) | |
tree | b0afdc2e224d8f28ec6f9fb516d0ad2cb63c4908 /src/qml/jsruntime/qv4regexpobject.cpp | |
parent | 002e6105f61269f1474de878ccdb26205e5b226e (diff) | |
download | qtdeclarative-d6837e9ca301e7b6c792e3d24db14fb7bab2db60.tar.gz |
Rename QV4::ValueScope to QV4::Scope
The class is going to be used all over the place, so let's
give it a short name :)
Change-Id: If61543cb2c885e7fbb95c8fc4d0e870097c352ed
Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4regexpobject.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4regexpobject.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/jsruntime/qv4regexpobject.cpp b/src/qml/jsruntime/qv4regexpobject.cpp index 1cee9ed67c..90ab558d7a 100644 --- a/src/qml/jsruntime/qv4regexpobject.cpp +++ b/src/qml/jsruntime/qv4regexpobject.cpp @@ -232,7 +232,7 @@ RegExpCtor::RegExpCtor(ExecutionContext *scope) Value RegExpCtor::construct(Managed *m, CallData *callData) { ExecutionContext *ctx = m->engine()->current; - ValueScope scope(ctx); + Scope scope(ctx); ScopedValue r(scope, callData->argc > 0 ? callData->args[0] : Value::undefinedValue()); ScopedValue f(scope, callData->argc > 1 ? callData->args[1] : Value::undefinedValue()); @@ -298,7 +298,7 @@ void RegExpPrototype::init(ExecutionContext *ctx, const Value &ctor) Value RegExpPrototype::method_exec(SimpleCallContext *ctx) { - ValueScope scope(ctx); + Scope scope(ctx); RegExpObject *r = ctx->thisObject.as<RegExpObject>(); if (!r) @@ -359,7 +359,7 @@ Value RegExpPrototype::method_toString(SimpleCallContext *ctx) Value RegExpPrototype::method_compile(SimpleCallContext *ctx) { - ValueScope scope(ctx); + Scope scope(ctx); RegExpObject *r = ctx->thisObject.as<RegExpObject>(); if (!r) ctx->throwTypeError(); |