From 3783a6a54322e51fdc3f5428300eef9ee2fc6212 Mon Sep 17 00:00:00 2001 From: Simon De Backer Date: Sun, 16 Aug 2020 14:07:46 +0200 Subject: [PATCH] Fix warning 'setParts' is not marked 'override' --- sources/editor/styleeditor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/editor/styleeditor.h b/sources/editor/styleeditor.h index eba977076..6aa6abdf9 100644 --- a/sources/editor/styleeditor.h +++ b/sources/editor/styleeditor.h @@ -53,9 +53,9 @@ class StyleEditor : public ElementItemEditor // methods public: bool setPart(CustomElementPart *) override; - bool setParts(QList); + bool setParts(QList) override; CustomElementPart *currentPart() const override; - QList currentParts() const override; + QList currentParts() const override; static bool isStyleEditable (QList cep_list);