summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTasuku Suzuki <tasuku.suzuki@qbc.io>2018-12-11 17:41:52 +0900
committerPaolo Angelelli <paolo.angelelli@qt.io>2019-01-13 19:56:34 +0000
commit41e2042acf4e312933c5d3e27f3b741b7892b8d0 (patch)
tree747ca5ceb52ae95aa79f4056a368ba3384e00543
parentbe55fa95765c0d53fadddfce2e9aefa651cf791d (diff)
downloadqtlocation-41e2042acf4e312933c5d3e27f3b741b7892b8d0.tar.gz
Fix use_mapbox_text_instructions typo
Change-Id: Ie6e1b7a21818a10b893b161183da2dd447e41ec5 Reviewed-by: Paolo Angelelli <paolo.angelelli@qt.io>
-rw-r--r--src/plugins/geoservices/mapbox/qgeoroutingmanagerenginemapbox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/geoservices/mapbox/qgeoroutingmanagerenginemapbox.cpp b/src/plugins/geoservices/mapbox/qgeoroutingmanagerenginemapbox.cpp
index 29cf0167..08a3b5a6 100644
--- a/src/plugins/geoservices/mapbox/qgeoroutingmanagerenginemapbox.cpp
+++ b/src/plugins/geoservices/mapbox/qgeoroutingmanagerenginemapbox.cpp
@@ -233,7 +233,7 @@ QGeoRoutingManagerEngineMapbox::QGeoRoutingManagerEngineMapbox(const QVariantMap
bool use_mapbox_text_instructions = true;
if (parameters.contains(QStringLiteral("mapbox.routing.use_mapbox_text_instructions"))) {
- use_mapbox_text_instructions = parameters.value(QStringLiteral("mapbox.use_mapbox_text_instructions")).toBool();
+ use_mapbox_text_instructions = parameters.value(QStringLiteral("mapbox.routing.use_mapbox_text_instructions")).toBool();
}
QGeoRouteParserOsrmV5 *parser = new QGeoRouteParserOsrmV5(this);