From 00b8309107ba517dd905454612c676dc317bc69a Mon Sep 17 00:00:00 2001 From: Kevin Matz Date: Fri, 14 Apr 2023 10:20:48 -0400 Subject: [PATCH] explicitly virtual also in the super class --- platform/qt/dmxwidget/dmxwidget.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/qt/dmxwidget/dmxwidget.h b/platform/qt/dmxwidget/dmxwidget.h index a7b9474..7d562f8 100644 --- a/platform/qt/dmxwidget/dmxwidget.h +++ b/platform/qt/dmxwidget/dmxwidget.h @@ -69,7 +69,7 @@ signals: void serialDataRead(); protected: - void sendMessage(std::shared_ptr) const override; + virtual void sendMessage(std::shared_ptr) const override; private: QSerialPort *port_;