aboutsummaryrefslogtreecommitdiffstats
path: root/qmljs_objects.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2012-11-11 22:08:39 +0100
committerErik Verbruggen <erik.verbruggen@digia.com>2012-11-12 09:18:12 +0100
commitbc42b47a117df146bf57a0bd6ec43acd515de4d6 (patch)
treebcc01543adc90c819b33ba43d36577c756a0497c /qmljs_objects.h
parentc5b258c21dea10e69e6977920c14c96368384933 (diff)
Better argument ordering.
Change-Id: I1d47ce7bd2cf27bc43a0e9afbfb2914296c9d704 Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
Diffstat (limited to 'qmljs_objects.h')
-rw-r--r--qmljs_objects.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmljs_objects.h b/qmljs_objects.h
index 6fae34d79f..139ea10f77 100644
--- a/qmljs_objects.h
+++ b/qmljs_objects.h
@@ -412,7 +412,7 @@ struct Object {
void __put__(Context *ctx, const QString &name, void (*code)(Context *), int count = 0);
Value getValue(Context *ctx, PropertyDescriptor *p) const;
- bool inplaceBinOp(Value rhs, Context *ctx, String *name, BinOp op);
+ bool inplaceBinOp(Value rhs, String *name, BinOp op, Context *ctx);
virtual bool inplaceBinOp(Value rhs, Value index, BinOp op, Context *ctx);
};