From bd75f5da1d17362a32ee3b3fef4694facd412165 Mon Sep 17 00:00:00 2001 From: Matthias Puchner <github@mpuchner.de> Date: Thu, 21 Oct 2021 17:34:32 +0200 Subject: [PATCH] fix compiler warning in unrelated code --- GUI/Views/CommonWidgets/ItemComboWidget.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GUI/Views/CommonWidgets/ItemComboWidget.h b/GUI/Views/CommonWidgets/ItemComboWidget.h index 91f46f5ee55..dfcd7ea780e 100644 --- a/GUI/Views/CommonWidgets/ItemComboWidget.h +++ b/GUI/Views/CommonWidgets/ItemComboWidget.h @@ -57,7 +57,7 @@ protected: virtual QStringList presentationList(SessionItem* item); virtual QString itemPresentation() const; QString selectedPresentation() const; - void subscribeToItem(); + virtual void subscribeToItem() override; private slots: void onComboChanged(const QString& name); -- GitLab