aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4object_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2015-08-25 17:29:33 +0200
committerLars Knoll <lars.knoll@theqtcompany.com>2015-09-15 19:12:59 +0000
commit9ea6c69ab5e18cc4bb703f6d3572e7ddc87e34a5 (patch)
tree7b46a541ccfa6a4a5746ee42c0f5a00c83624ebe /src/qml/jsruntime/qv4object_p.h
parentc5f3028d43662050a6bf5419690ddd4ab4288db8 (diff)
Simplify Object::putValue()
Change-Id: I1cc43f0081f63aed27c82875192e0f415ec995d5 Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/qml/jsruntime/qv4object_p.h')
-rw-r--r--src/qml/jsruntime/qv4object_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4object_p.h b/src/qml/jsruntime/qv4object_p.h
index b748f2e113..2d82213ec0 100644
--- a/src/qml/jsruntime/qv4object_p.h
+++ b/src/qml/jsruntime/qv4object_p.h
@@ -177,7 +177,7 @@ struct Q_QML_EXPORT Object: Managed {
return getValue(t, p, attrs);
}
- void putValue(Property *pd, PropertyAttributes attrs, const Value &value);
+ void putValue(uint memberIndex, const Value &value);
/* The spec default: Writable: true, Enumerable: false, Configurable: true */
void defineDefaultProperty(String *name, const Value &value) {