From fda0b70c10d5e7ff0b9a8d769e09a056ae1db058 Mon Sep 17 00:00:00 2001 From: Dean Lee Date: Wed, 25 Sep 2024 06:06:04 +0800 Subject: [PATCH] ui/hud: add Q_OBJECT macro (#33638) add Q_OBJECT --- selfdrive/ui/qt/onroad/hud.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/selfdrive/ui/qt/onroad/hud.h b/selfdrive/ui/qt/onroad/hud.h index 9151b23a4..0b1220a27 100644 --- a/selfdrive/ui/qt/onroad/hud.h +++ b/selfdrive/ui/qt/onroad/hud.h @@ -4,6 +4,8 @@ #include "selfdrive/ui/ui.h" class HudRenderer : public QObject { + Q_OBJECT + public: HudRenderer(); void updateState(const UIState &s);