mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-05-01 10:50:03 +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:
@@ -34,12 +34,12 @@ class MasterElement : public CustomElement
|
||||
|
||||
public:
|
||||
explicit MasterElement(const ElementsLocation &, QGraphicsItem * = nullptr, int * = nullptr);
|
||||
~MasterElement();
|
||||
~MasterElement() override;
|
||||
|
||||
virtual void linkToElement (Element *elmt);
|
||||
virtual void unlinkAllElements ();
|
||||
virtual void unlinkElement (Element *elmt);
|
||||
virtual void initLink (QETProject *project);
|
||||
void linkToElement (Element *elmt) override;
|
||||
void unlinkAllElements () override;
|
||||
void unlinkElement (Element *elmt) override;
|
||||
void initLink (QETProject *project) override;
|
||||
|
||||
public slots:
|
||||
void updateLabel(DiagramContext old_info, DiagramContext new_info);
|
||||
|
||||
Reference in New Issue
Block a user