summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2010-04-19 04:44:03 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2010-04-19 04:44:45 (GMT)
commit7de92b5b4cee9179d7163a477c03ed411c3975d6 (patch)
tree805fd66ef432f3b871b7a1f9f5101668c85f00ed /src/declarative/qml
parent00c7ca06be29fc816844020b4d44fc9370f77e57 (diff)
downloadQt-7de92b5b4cee9179d7163a477c03ed411c3975d6.zip
Qt-7de92b5b4cee9179d7163a477c03ed411c3975d6.tar.gz
Qt-7de92b5b4cee9179d7163a477c03ed411c3975d6.tar.bz2
Compile
Diffstat (limited to 'src/declarative/qml')
-rw-r--r--src/declarative/qml/qdeclarativeinfo.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/declarative/qml/qdeclarativeinfo.h b/src/declarative/qml/qdeclarativeinfo.h
index 36de7b1..3d5a111 100644
--- a/src/declarative/qml/qdeclarativeinfo.h
+++ b/src/declarative/qml/qdeclarativeinfo.h
@@ -43,6 +43,7 @@
#define QDECLARATIVEINFO_H
#include <QtCore/qdebug.h>
+#include <QtCore/qurl.h>
#include <QtDeclarative/qdeclarativeerror.h>
QT_BEGIN_HEADER
@@ -82,6 +83,7 @@ public:
inline QDeclarativeInfo &operator<<(const void * t) { QDebug::operator<<(t); return *this; }
inline QDeclarativeInfo &operator<<(QTextStreamFunction f) { QDebug::operator<<(f); return *this; }
inline QDeclarativeInfo &operator<<(QTextStreamManipulator m) { QDebug::operator<<(m); return *this; }
+ inline QDeclarativeInfo &operator<<(const QUrl &t) { static_cast<QDebug &>(*this) << t; return *this; }
private:
QDeclarativeInfoPrivate *d;