diff options
author | Scott Murray <scott.murray@konsulko.com> | 2023-08-24 15:49:06 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2023-08-24 15:49:22 -0400 |
commit | 7627784a867bd21e76d2889a3c99bbcfc12d3c3f (patch) | |
tree | 3db26143c2b4d077d66539bb3f0e699adc230388 | |
parent | e32620e4d8fce3fb8baa606458ad7dc1bb3ed561 (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.cpp | 2 |
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"))); |