mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-05-01 02:29:58 +02:00
Modernize-use-override refactors code
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5009 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
@@ -33,11 +33,11 @@ class ESEventAddEllipse : public ESEventInterface
|
||||
{
|
||||
public:
|
||||
ESEventAddEllipse(ElementScene *scene);
|
||||
~ESEventAddEllipse();
|
||||
~ESEventAddEllipse() override;
|
||||
|
||||
virtual bool mousePressEvent (QGraphicsSceneMouseEvent *event);
|
||||
virtual bool mouseMoveEvent (QGraphicsSceneMouseEvent *event);
|
||||
virtual bool mouseReleaseEvent (QGraphicsSceneMouseEvent *event);
|
||||
bool mousePressEvent (QGraphicsSceneMouseEvent *event) override;
|
||||
bool mouseMoveEvent (QGraphicsSceneMouseEvent *event) override;
|
||||
bool mouseReleaseEvent (QGraphicsSceneMouseEvent *event) override;
|
||||
|
||||
private:
|
||||
PartEllipse *m_ellipse;
|
||||
|
||||
Reference in New Issue
Block a user