From 7627784a867bd21e76d2889a3c99bbcfc12d3c3f Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Thu, 24 Aug 2023 15:49:06 -0400 Subject: 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 Change-Id: Ieec54503243cd93d78ea9e992e075ee832213c1c --- app/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"))); -- cgit 1.2.3-korg