summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron McCarthy <aaron.mccarthy@jollamobile.com>2013-12-10 17:23:47 +1000
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-08 02:48:34 +0100
commita12f2caf8fd801fc84953072bae7d185ba0ed109 (patch)
tree06f22692409e0fb8d42f8b65e10e0c832d50f787
parent22affd32649bd61d1d257f260f0314acfc3722aa (diff)
downloadqtlocation-a12f2caf8fd801fc84953072bae7d185ba0ed109.tar.gz
Fix warning message about unsupported area types.
This message is warning about unsupported area types not waypoint types. Change-Id: I6c244ce121140a0fa89dba0bfcc6fe65044d239a Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
-rw-r--r--src/imports/location/qdeclarativegeoroutemodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imports/location/qdeclarativegeoroutemodel.cpp b/src/imports/location/qdeclarativegeoroutemodel.cpp
index 2a792fe5..110ffbb1 100644
--- a/src/imports/location/qdeclarativegeoroutemodel.cpp
+++ b/src/imports/location/qdeclarativegeoroutemodel.cpp
@@ -920,7 +920,7 @@ void QDeclarativeGeoRouteQuery::setExcludedAreas(const QJSValue &value)
QGeoRectangle r = parseRectangle(value.property(i), &ok);
if (!ok || !r.isValid()) {
- qmlInfo(this) << "Unsupported waypoint type";
+ qmlInfo(this) << "Unsupported area type";
return;
}