summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativepropertyvalueinterceptor.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2012-02-21 09:53:27 +0100
committerQt by Nokia <qt-info@nokia.com>2012-02-21 15:34:38 +0100
commit650a8ccc21f8e65730afb195b05790e3b3f9985f (patch)
tree6d2ba7166b86d2a87a2a934733becaaeb6cd7d26 /src/declarative/qml/qdeclarativepropertyvalueinterceptor.h
parent4f3300b7ce5c3138421a21ec83615a536c9fd316 (diff)
Use new plugin system in QtQuick1.
- Use prefix "org.qt-project" for interfaces. - Use new macros, add json files. Change-Id: I157206ad883be16fb85b9b6bffca7200532561e4 Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Diffstat (limited to 'src/declarative/qml/qdeclarativepropertyvalueinterceptor.h')
-rw-r--r--src/declarative/qml/qdeclarativepropertyvalueinterceptor.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/declarative/qml/qdeclarativepropertyvalueinterceptor.h b/src/declarative/qml/qdeclarativepropertyvalueinterceptor.h
index c95e5577..a6644b0b 100644
--- a/src/declarative/qml/qdeclarativepropertyvalueinterceptor.h
+++ b/src/declarative/qml/qdeclarativepropertyvalueinterceptor.h
@@ -59,7 +59,10 @@ public:
virtual void setTarget(const QDeclarativeProperty &property) = 0;
virtual void write(const QVariant &value) = 0;
};
-Q_DECLARE_INTERFACE(QDeclarativePropertyValueInterceptor, "com.trolltech.qml.QDeclarativePropertyValueInterceptor")
+
+#define QDeclarativePropertyValueInterceptor_iid "org.qt-project.Qt.QDeclarativePropertyValueInterceptor"
+
+Q_DECLARE_INTERFACE(QDeclarativePropertyValueInterceptor, QDeclarativePropertyValueInterceptor_iid)
QT_END_NAMESPACE