aboutsummaryrefslogtreecommitdiffstats
path: root/src/v4/qv4errorobject.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-04-05 16:23:22 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2013-04-05 20:39:09 +0200
commit3b73dd08e0cb705dc57f6cce8b528c36aad40bcc (patch)
tree6a8feac3b99b719d91f95d2660ba5bdd6168c6a4 /src/v4/qv4errorobject.cpp
parent8da2e2af2634fbba0920a6296ad470c491ae00f7 (diff)
Move arguments out of ExecutionContext and into CallContext
Change-Id: Ic826e3e71eac9171fa113dec79db7c69982f2386 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/v4/qv4errorobject.cpp')
-rw-r--r--src/v4/qv4errorobject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/v4/qv4errorobject.cpp b/src/v4/qv4errorobject.cpp
index 9dc884e058..f576b73211 100644
--- a/src/v4/qv4errorobject.cpp
+++ b/src/v4/qv4errorobject.cpp
@@ -230,7 +230,7 @@ void ErrorPrototype::init(ExecutionContext *ctx, const Value &ctor, Object *obj)
obj->defineDefaultProperty(ctx, QStringLiteral("name"), Value::fromString(ctx, QStringLiteral("Error")));
}
-Value ErrorPrototype::method_toString(ExecutionContext *ctx)
+Value ErrorPrototype::method_toString(CallContext *ctx)
{
Object *o = ctx->thisObject.asObject();
if (!o)