diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-08-10 03:44:48 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-08-10 03:44:48 (GMT) |
commit | 12ffa33ddc725cd94662a383af6e1793049c807c (patch) | |
tree | 8190ce28b9cc6bd23736f718ded3b59d32be80d0 /src/declarative/qml/qmlcontext_p.h | |
parent | 3ee9db1d892927522832b6bc8e1d806e27015bc4 (diff) | |
download | Qt-12ffa33ddc725cd94662a383af6e1793049c807c.zip Qt-12ffa33ddc725cd94662a383af6e1793049c807c.tar.gz Qt-12ffa33ddc725cd94662a383af6e1793049c807c.tar.bz2 |
Simplify QmlDeclarativeData to a single class
Diffstat (limited to 'src/declarative/qml/qmlcontext_p.h')
-rw-r--r-- | src/declarative/qml/qmlcontext_p.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/declarative/qml/qmlcontext_p.h b/src/declarative/qml/qmlcontext_p.h index 60655ae..0424a85 100644 --- a/src/declarative/qml/qmlcontext_p.h +++ b/src/declarative/qml/qmlcontext_p.h @@ -106,7 +106,6 @@ public: QmlExpressionPrivate *expressions; - QmlSimpleDeclarativeData contextData; QObjectList contextObjects; struct ContextGuard : public QGuard<QObject> @@ -115,7 +114,7 @@ public: ContextGuard &operator=(QObject *obj) { (QGuard<QObject>&)*this = obj; return *this; } - void objectDestroyed(QObject *o) { priv->destroyed(this); } + void objectDestroyed(QObject *) { priv->destroyed(this); } }; ContextGuard *idValues; int idValueCount; |