summaryrefslogtreecommitdiffstats
path: root/src/declarative
diff options
context:
space:
mode:
authorRhys Weatherley <rhys.weatherley@nokia.com>2010-09-15 00:32:03 (GMT)
committerRhys Weatherley <rhys.weatherley@nokia.com>2010-09-15 00:32:03 (GMT)
commita2c73d3f0305847343d5015c095073eae0ead197 (patch)
treee1f9fceda357fede4fafdec5390deb500923b1fb /src/declarative
parent30b415bf8644961d3e5b108b0b7c1b1abf07f685 (diff)
downloadQt-a2c73d3f0305847343d5015c095073eae0ead197.zip
Qt-a2c73d3f0305847343d5015c095073eae0ead197.tar.gz
Qt-a2c73d3f0305847343d5015c095073eae0ead197.tar.bz2
Rename "interface" in qdeclarativeinterface.h to "qmlInterface"
The "interface" name is #define'd to "struct" in Windows COM headers in some SDK's, and creates problems when such headers are mixed with QML bindings. Reviewed-by: Joona Petrell
Diffstat (limited to 'src/declarative')
-rw-r--r--src/declarative/qml/qdeclarative.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/qml/qdeclarative.h b/src/declarative/qml/qdeclarative.h
index c6b64ae..985ab72 100644
--- a/src/declarative/qml/qdeclarative.h
+++ b/src/declarative/qml/qdeclarative.h
@@ -269,7 +269,7 @@ int qmlRegisterInterface(const char *typeName)
QByteArray pointerName(name + '*');
QByteArray listName("QDeclarativeListProperty<" + name + ">");
- QDeclarativePrivate::RegisterInterface interface = {
+ QDeclarativePrivate::RegisterInterface qmlInterface = {
0,
qRegisterMetaType<T *>(pointerName.constData()),
@@ -278,7 +278,7 @@ int qmlRegisterInterface(const char *typeName)
qobject_interface_iid<T *>()
};
- return QDeclarativePrivate::qmlregister(QDeclarativePrivate::InterfaceRegistration, &interface);
+ return QDeclarativePrivate::qmlregister(QDeclarativePrivate::InterfaceRegistration, &qmlInterface);
}
template<typename T>