aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2023-08-24 15:47:10 -0400
committerScott Murray <scott.murray@konsulko.com>2023-08-24 15:48:48 -0400
commitd6b883ef6bdb63fb501b03d64c9a32bc29b7b2c7 (patch)
tree433c053ca919a927b5595f3c47edb60c3abfd562
parentf10d5dcb08d2b0c816f73b1e9b63e3da0109ac34 (diff)
Update Navigation usage
Update usage of the Navigation class from libqtappfw to pass in the new router flag to its constructor. Bug-AGL: SPEC-4762 Signed-off-by: Scott Murray <scott.murray@konsulko.com> Change-Id: Idcca7c76a7e9996c92a21485720695bb28b7fcf7
-rw-r--r--app/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/main.cpp b/app/main.cpp
index 1d07977..487a4e3 100644
--- a/app/main.cpp
+++ b/app/main.cpp
@@ -50,7 +50,7 @@ int main(int argc, char *argv[])
context->setContextProperty("fileOperation", &file);
VehicleSignalsConfig vsConfig("navigation");
- Navigation *navigation = new Navigation(new VehicleSignals(vsConfig), context);
+ Navigation *navigation = new Navigation(new VehicleSignals(vsConfig), true, context);
context->setContextProperty("navigation", navigation);
MarkerModel model;