diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-06-16 05:02:51 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-06-16 05:02:51 (GMT) |
commit | 6bc2a137e2b9c508d86047576907956418d292aa (patch) | |
tree | 784f9cabd629b8feb4944b9781f5e00795f52793 /src/declarative/qml/qmlproxymetaobject_p.h | |
parent | 1e5dd7d82d542527ca9e650f78a5e25b6a3ebc41 (diff) | |
download | Qt-6bc2a137e2b9c508d86047576907956418d292aa.zip Qt-6bc2a137e2b9c508d86047576907956418d292aa.tar.gz Qt-6bc2a137e2b9c508d86047576907956418d292aa.tar.bz2 |
Forward signals from extended objects
This is necessary so that notify signals on properties defined in an extension object operate correctly.
Diffstat (limited to 'src/declarative/qml/qmlproxymetaobject_p.h')
-rw-r--r-- | src/declarative/qml/qmlproxymetaobject_p.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/declarative/qml/qmlproxymetaobject_p.h b/src/declarative/qml/qmlproxymetaobject_p.h index 0ffa365..c0ce36e 100644 --- a/src/declarative/qml/qmlproxymetaobject_p.h +++ b/src/declarative/qml/qmlproxymetaobject_p.h @@ -61,6 +61,7 @@ public: QMetaObject *metaObject; CreateFunc createFunc; int propertyOffset; + int methodOffset; }; QmlProxyMetaObject(QObject *, QList<ProxyData> *); |