From 33a4fda7fd53ff29dfc79857da57e7e59453ce3c Mon Sep 17 00:00:00 2001 From: Willem Melching Date: Wed, 23 Feb 2022 13:34:31 +0100 Subject: [PATCH] replay: use QCoreApplication (#23831) old-commit-hash: df88280e0fa2f3b7799c48306c6ce9abdf3ebfb4 --- selfdrive/ui/replay/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/ui/replay/main.cc b/selfdrive/ui/replay/main.cc index a7d2f54042..6f29065778 100644 --- a/selfdrive/ui/replay/main.cc +++ b/selfdrive/ui/replay/main.cc @@ -7,7 +7,7 @@ const QString DEMO_ROUTE = "4cf7a6ad03080c90|2021-09-29--13-46-36"; int main(int argc, char *argv[]) { - QApplication app(argc, argv); + QCoreApplication app(argc, argv); const std::tuple flags[] = { {"dcam", REPLAY_FLAG_DCAM, "load driver camera"},