Use override specifier where apropriate.

- fixed using clang-tidy's modernize-use-override check.
This commit is contained in:
Jim Evins
2017-03-21 23:36:39 -04:00
parent 9f9ba345cf
commit e09936233a
38 changed files with 202 additions and 202 deletions
+2 -2
View File
@@ -49,8 +49,8 @@ namespace glabels
// Virtual method implementations
/////////////////////////////////////
public:
QRectF boundingRect() const;
void paint( QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget );
QRectF boundingRect() const override;
void paint( QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget ) override;
/////////////////////////////////