diff options
author | Scott Murray <scott.murray@konsulko.com> | 2023-08-24 15:47:10 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2023-08-24 15:48:48 -0400 |
commit | d6b883ef6bdb63fb501b03d64c9a32bc29b7b2c7 (patch) | |
tree | 433c053ca919a927b5595f3c47edb60c3abfd562 | |
parent | f10d5dcb08d2b0c816f73b1e9b63e3da0109ac34 (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.cpp | 2 |
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; |