aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/designer/qqmldesignermetaobject_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2015-08-11 10:19:37 +0200
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2015-08-19 11:38:27 +0000
commitef4ad30e7f16185b9bd299457836a27b56ce1fa5 (patch)
tree88e78ee469778b654a276e40cfc544114be3bdf5 /src/quick/designer/qqmldesignermetaobject_p.h
parent8fe2e6795d9030a7c6f660a0e57b0d85fc36a1f1 (diff)
Switch to the non compat metacall overload
This one passes in the qobject that the metacall is being applied to. The long term goal is to make the vme meta object independent of the QObject instance. Change-Id: Ide34b8637b9963bdb5e87e4aa6e9c2ee825293f7 Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/quick/designer/qqmldesignermetaobject_p.h')
-rw-r--r--src/quick/designer/qqmldesignermetaobject_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quick/designer/qqmldesignermetaobject_p.h b/src/quick/designer/qqmldesignermetaobject_p.h
index eca4fb6a99..47f4baad2b 100644
--- a/src/quick/designer/qqmldesignermetaobject_p.h
+++ b/src/quick/designer/qqmldesignermetaobject_p.h
@@ -68,8 +68,8 @@ protected:
static QQmlDesignerMetaObject* getNodeInstanceMetaObject(QObject *object, QQmlEngine *engine);
void createNewDynamicProperty(const QString &name);
- int openMetaCall(QMetaObject::Call _c, int _id, void **_a);
- int metaCall(QMetaObject::Call _c, int _id, void **_a);
+ int openMetaCall(QObject *o, QMetaObject::Call _c, int _id, void **_a);
+ int metaCall(QObject *o, QMetaObject::Call _c, int _id, void **_a);
void notifyPropertyChange(int id);
void setValue(int id, const QVariant &value);
QVariant propertyWriteValue(int, const QVariant &);