summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralex <alex.blasche@nokia.com>2011-07-11 13:28:16 +1000
committerQt by Nokia <qt-info@nokia.com>2011-07-11 05:59:43 +0200
commit25a0d727c12b3c38af450e532ee8510748058bc1 (patch)
tree0d971c2d5985e2be905d065b1a68a40b22641ba2
parentd4c5941e17c3b726514731fed53e1f7796004bde (diff)
fix type in debug output
pointed out by Daniel Qiu in Qt-Mobility merge request #34 Change-Id: Ic4ce343f6d27a9211090d0ce2d39c4dcc978da08 Reviewed-on: http://codereview.qt.nokia.com/1389 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Juha Vuolle <juha.vuolle@nokia.com>
-rw-r--r--src/location/qgeoplace.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/location/qgeoplace.cpp b/src/location/qgeoplace.cpp
index d58fbd05..a096e6d4 100644
--- a/src/location/qgeoplace.cpp
+++ b/src/location/qgeoplace.cpp
@@ -264,7 +264,7 @@ bool QGeoPlacePrivate::operator== (const QGeoPlacePrivate &other) const
{
#ifdef QGEOPLACE_DEBUG
- qDebug() << "typoe" << (type == other.type);
+ qDebug() << "type" << (type == other.type);
qDebug() << "viewport" << (viewport == other.viewport);
qDebug() << "coordinate:" << (coordinate == other.coordinate);
qDebug() << "address:" << (address == other.address);