diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-05-22 03:47:04 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-05-22 03:47:04 (GMT) |
commit | 6ddbc147cadc4d450bb8e20cedf1b99e0fcbf894 (patch) | |
tree | 5a63e3cd24eb44072ae67d0f248cdc546d310d77 /tests/auto/declarative | |
parent | 3158bf19bd49f72ca379203ea259e7b2d371f0d4 (diff) | |
download | Qt-6ddbc147cadc4d450bb8e20cedf1b99e0fcbf894.zip Qt-6ddbc147cadc4d450bb8e20cedf1b99e0fcbf894.tar.gz Qt-6ddbc147cadc4d450bb8e20cedf1b99e0fcbf894.tar.bz2 |
Store the type of the attached properties object
Diffstat (limited to 'tests/auto/declarative')
-rw-r--r-- | tests/auto/declarative/qmlparser/testtypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/declarative/qmlparser/testtypes.h b/tests/auto/declarative/qmlparser/testtypes.h index c1f85b9..e124631 100644 --- a/tests/auto/declarative/qmlparser/testtypes.h +++ b/tests/auto/declarative/qmlparser/testtypes.h @@ -66,7 +66,7 @@ public: MyInterface *interface() const { return m_interface; } void setInterface(MyInterface *iface) { m_interface = iface; } - static QObject *qmlAttachedProperties(QObject *other) { + static MyQmlObject *qmlAttachedProperties(QObject *other) { MyQmlObject *rv = new MyQmlObject; rv->setParent(other); return rv; |