Fix warning 'setParts' is not marked 'override'

This commit is contained in:
Simon De Backer
2020-08-16 14:07:46 +02:00
parent 070cc2e4ac
commit 3783a6a543

View File

@@ -53,9 +53,9 @@ class StyleEditor : public ElementItemEditor
// methods
public:
bool setPart(CustomElementPart *) override;
bool setParts(QList<CustomElementPart *>);
bool setParts(QList<CustomElementPart *>) override;
CustomElementPart *currentPart() const override;
QList<CustomElementPart*> currentParts() const override;
QList<CustomElementPart*> currentParts() const override;
static bool isStyleEditable (QList <CustomElementPart *> cep_list);