aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2023-08-24 15:49:06 -0400
committerScott Murray <scott.murray@konsulko.com>2023-08-24 15:49:22 -0400
commit7627784a867bd21e76d2889a3c99bbcfc12d3c3f (patch)
tree3db26143c2b4d077d66539bb3f0e699adc230388
parente32620e4d8fce3fb8baa606458ad7dc1bb3ed561 (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: Ieec54503243cd93d78ea9e992e075ee832213c1c
-rw-r--r--app/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/main.cpp b/app/main.cpp
index 68f1dfe..4486d61 100644
--- a/app/main.cpp
+++ b/app/main.cpp
@@ -145,7 +145,7 @@ int main(int argc, char *argv[])
// Give the navigation client it's own vehicle signals connection
// to simplify state management wrt QML initialization, and keep the
// notification streams separate.
- Navigation *navigation = new Navigation(new VehicleSignals(vsConfig), context);
+ Navigation *navigation = new Navigation(new VehicleSignals(vsConfig), false, context);
engine.load(QUrl(QStringLiteral("qrc:qml/Main.qml")));