Build fix.
authorJędrzej Nowacki <jedrzej.nowacki@nokia.com>
Fri, 20 Jan 2012 20:23:45 +0000 (21:23 +0100)
committerQt by Nokia <qt-info@nokia.com>
Fri, 20 Jan 2012 21:24:31 +0000 (22:24 +0100)
QBool was removed from QtBase in change I6642f43f
(Remove QBool and use bool instead)

Change-Id: Ia4c5d12fae8779d7e8c880755cd16e215f073a6d
Reviewed-by: David Faure <faure@kde.org>
src/declarative/qml/qdeclarativeinfo.h

index 7d90bab..c56f010 100644 (file)
@@ -59,7 +59,6 @@ public:
     ~QDeclarativeInfo();
 
     inline QDeclarativeInfo &operator<<(QChar t) { QDebug::operator<<(t); return *this; }
-    inline QDeclarativeInfo &operator<<(QBool t) { QDebug::operator<<(t); return *this; }
     inline QDeclarativeInfo &operator<<(bool t) { QDebug::operator<<(t); return *this; }
     inline QDeclarativeInfo &operator<<(char t) { QDebug::operator<<(t); return *this; }
     inline QDeclarativeInfo &operator<<(signed short t) { QDebug::operator<<(t); return *this; }