TD: [skip ci] fix -Winconsistent-missing-override

This commit is contained in:
wmayer
2023-01-05 11:14:30 +01:00
parent b2ab8edba4
commit 620aaac90d

View File

@@ -55,9 +55,9 @@ public:
{
Type = QGraphicsItem::UserType + 153
};
int type() const { return Type; }
int type() const override { return Type; }
void draw();
void draw() override;
void updateView(bool update = false) override;
TechDraw::DrawSVGTemplate* getSVGTemplate();