aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/v4/qv4lookup.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-06-21 21:48:06 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2013-06-22 21:03:16 +0200
commitf6297f355bf5e573ee10e2a156bde164e4ad744d (patch)
treec5042511f9bc5563649b9554003519d3b0e39265 /src/qml/qml/v4/qv4lookup.cpp
parent7b9769e3b6e687b574831342db3118fc5f16c9c5 (diff)
Remove the ExecutionContext parameter from Managed::get/setLookup
Change-Id: I9d3763b97438db83fef899917cbaee2f7cd59f96 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/qml/v4/qv4lookup.cpp')
-rw-r--r--src/qml/qml/v4/qv4lookup.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/qml/v4/qv4lookup.cpp b/src/qml/qml/v4/qv4lookup.cpp
index d5e8cc8e11..61e2b8b87b 100644
--- a/src/qml/qml/v4/qv4lookup.cpp
+++ b/src/qml/qml/v4/qv4lookup.cpp
@@ -89,7 +89,7 @@ Property *Lookup::lookup(Object *obj, PropertyAttributes *attrs)
void Lookup::getterGeneric(QV4::Lookup *l, ExecutionContext *ctx, QV4::Value *result, const QV4::Value &object)
{
if (Object *o = object.asObject()) {
- o->getLookup(ctx, l, result);
+ o->getLookup(l, result);
return;
}
@@ -341,7 +341,7 @@ void Lookup::globalGetterAccessor2(Lookup *l, ExecutionContext *ctx, Value *resu
void Lookup::setterGeneric(Lookup *l, ExecutionContext *ctx, const Value &object, const Value &value)
{
Object *o = object.toObject(ctx);
- o->setLookup(ctx, l, value);
+ o->setLookup(l, value);
return;
}