diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-11-04 05:49:26 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-11-04 05:49:26 (GMT) |
commit | 48ea5a5c74620f9811debc6bf1e49bf095d30722 (patch) | |
tree | 645d554886311b0faf4b0f7a743fd70b9ef61cfe /src/declarative/qml/qmlmetaproperty.h | |
parent | e87f1cfec926aab2336063729d21059ebc9767e5 (diff) | |
download | Qt-48ea5a5c74620f9811debc6bf1e49bf095d30722.zip Qt-48ea5a5c74620f9811debc6bf1e49bf095d30722.tar.gz Qt-48ea5a5c74620f9811debc6bf1e49bf095d30722.tar.bz2 |
tests
Diffstat (limited to 'src/declarative/qml/qmlmetaproperty.h')
-rw-r--r-- | src/declarative/qml/qmlmetaproperty.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/declarative/qml/qmlmetaproperty.h b/src/declarative/qml/qmlmetaproperty.h index ce4ac1e..6db99c6 100644 --- a/src/declarative/qml/qmlmetaproperty.h +++ b/src/declarative/qml/qmlmetaproperty.h @@ -79,10 +79,8 @@ public: QmlMetaProperty(QObject *, const QString &, QmlContext *); QmlMetaProperty(const QmlMetaProperty &); QmlMetaProperty &operator=(const QmlMetaProperty &); - QmlMetaProperty(QObject *, int, QmlContext * = 0); ~QmlMetaProperty(); - static QStringList properties(QObject *); QString name() const; QVariant read() const; @@ -96,9 +94,6 @@ public: bool connectNotifier(QObject *dest, const char *slot) const; bool connectNotifier(QObject *dest, int method) const; - quint32 save() const; - void restore(quint32, QObject *, QmlContext * = 0); - QMetaMethod method() const; enum Type { Invalid = 0x00, @@ -138,6 +133,7 @@ public: int valueTypeCoreIndex() const; private: friend class QmlEnginePrivate; + friend class QmlMetaPropertyPrivate;; QmlMetaPropertyPrivate *d; }; typedef QList<QmlMetaProperty> QmlMetaProperties; |