summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlmetaproperty_p.h
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-12-23 04:17:55 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-12-23 04:17:55 (GMT)
commit4fe8f2ab89ace6e617a81c5e8568c3830135da20 (patch)
tree900e99845dee1d8717d2a816133971ed3c5653c8 /src/declarative/qml/qmlmetaproperty_p.h
parentb95cf9eccc4a84036c7b5d1443e598d3db2f2d70 (diff)
downloadQt-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/qmlmetaproperty_p.h')
-rw-r--r--src/declarative/qml/qmlmetaproperty_p.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/declarative/qml/qmlmetaproperty_p.h b/src/declarative/qml/qmlmetaproperty_p.h
index b4d72bb..97b5208 100644
--- a/src/declarative/qml/qmlmetaproperty_p.h
+++ b/src/declarative/qml/qmlmetaproperty_p.h
@@ -56,6 +56,7 @@
#include "qmlmetaproperty.h"
#include "qmlpropertycache_p.h"
+#include "qmlguard_p.h"
#include <private/qobject_p.h>
@@ -77,7 +78,7 @@ public:
QmlMetaProperty *q;
QmlContext *context;
- QGuard<QObject> object;
+ QmlGuard<QObject> object;
bool isDefaultProperty:1;
bool isNameCached:1;