From d8a734b7bc8a1a7e58ca53782a141c7cb8b42244 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 29 Sep 2024 19:06:11 -0400 Subject: Declare classes final and fix strict GCC release build --- src/jalv_qt.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/jalv_qt.hpp b/src/jalv_qt.hpp index ea08bbf..30138f4 100644 --- a/src/jalv_qt.hpp +++ b/src/jalv_qt.hpp @@ -21,7 +21,7 @@ class QDial; class QLabel; class QWidget; -class PresetAction : public QAction +class PresetAction final : public QAction { Q_OBJECT // NOLINT @@ -46,7 +46,7 @@ struct PortContainer { Port* port; }; -class Control : public QGroupBox +class Control final : public QGroupBox { Q_OBJECT // NOLINT -- cgit v1.2.1