diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2010-04-21 23:02:32 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2010-04-21 23:02:32 (GMT) |
commit | 7140938c8504357532a04661a06841dea5bbe5b8 (patch) | |
tree | 5ce8528d74c3e7d9560e80b8e0712cb161b60435 /src/declarative | |
parent | 445dfc6053c5007591603a722a5689ca165338de (diff) | |
download | Qt-7140938c8504357532a04661a06841dea5bbe5b8.zip Qt-7140938c8504357532a04661a06841dea5bbe5b8.tar.gz Qt-7140938c8504357532a04661a06841dea5bbe5b8.tar.bz2 |
Compile on Windows (export decl fix).
Diffstat (limited to 'src/declarative')
-rw-r--r-- | src/declarative/qml/qdeclarativeinfo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/declarative/qml/qdeclarativeinfo.h b/src/declarative/qml/qdeclarativeinfo.h index 82f44f2..2ac28f4 100644 --- a/src/declarative/qml/qdeclarativeinfo.h +++ b/src/declarative/qml/qdeclarativeinfo.h @@ -84,9 +84,9 @@ public: inline QDeclarativeInfo &operator<<(const QUrl &t) { static_cast<QDebug &>(*this) << t; return *this; } private: - friend QDeclarativeInfo qmlInfo(const QObject *me); - friend QDeclarativeInfo qmlInfo(const QObject *me, const QDeclarativeError &error); - friend QDeclarativeInfo qmlInfo(const QObject *me, const QList<QDeclarativeError> &errors); + friend Q_DECLARATIVE_EXPORT QDeclarativeInfo qmlInfo(const QObject *me); + friend Q_DECLARATIVE_EXPORT QDeclarativeInfo qmlInfo(const QObject *me, const QDeclarativeError &error); + friend Q_DECLARATIVE_EXPORT QDeclarativeInfo qmlInfo(const QObject *me, const QList<QDeclarativeError> &errors); QDeclarativeInfo(QDeclarativeInfoPrivate *); QDeclarativeInfoPrivate *d; |