diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-12-23 04:17:55 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-12-23 04:17:55 (GMT) |
commit | 4fe8f2ab89ace6e617a81c5e8568c3830135da20 (patch) | |
tree | 900e99845dee1d8717d2a816133971ed3c5653c8 /src/declarative/qml/qmlcontext_p.h | |
parent | b95cf9eccc4a84036c7b5d1443e598d3db2f2d70 (diff) | |
download | Qt-4fe8f2ab89ace6e617a81c5e8568c3830135da20.zip Qt-4fe8f2ab89ace6e617a81c5e8568c3830135da20.tar.gz Qt-4fe8f2ab89ace6e617a81c5e8568c3830135da20.tar.bz2 |
Stop using QGuard
This should allow QGuard to be removed from Qt and QObjectPrivate::ExtraData.
Having QmlGuard inside QmlDeclarativeData reduces the number of new's, and
creating QmlDeclarativeData is faster than QObjectPrivate::ExtraData anyway.
Diffstat (limited to 'src/declarative/qml/qmlcontext_p.h')
-rw-r--r-- | src/declarative/qml/qmlcontext_p.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/declarative/qml/qmlcontext_p.h b/src/declarative/qml/qmlcontext_p.h index 25f5600..bc8c357 100644 --- a/src/declarative/qml/qmlcontext_p.h +++ b/src/declarative/qml/qmlcontext_p.h @@ -65,7 +65,7 @@ #include <QtCore/qset.h> #include <private/qobject_p.h> -#include <private/qguard_p.h> +#include "qmlguard_p.h" QT_BEGIN_NAMESPACE @@ -112,13 +112,13 @@ public: QmlDeclarativeData *contextObjects; - struct ContextGuard : public QGuard<QObject> + struct ContextGuard : public QmlGuard<QObject> { ContextGuard() : priv(0), bindings(0) {} QmlContextPrivate *priv; QmlBinding_Id *bindings; ContextGuard &operator=(QObject *obj) { - (QGuard<QObject>&)*this = obj; return *this; + (QmlGuard<QObject>&)*this = obj; return *this; } void objectDestroyed(QObject *) { priv->destroyed(this); } }; |