ExtensionSystem/Aggregation: Use override consistently

clang-tidy fixes from modernize-use-override check.

Change-Id: Ic10099c2a2f3a070c972442736e50e797a063597
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Tobias Hunger
2018-05-07 15:04:23 +02:00
parent 743d3fbb50
commit 3890f5d67d
7 changed files with 7 additions and 7 deletions

View File

@@ -41,7 +41,7 @@ class AGGREGATION_EXPORT Aggregate : public QObject
public:
Aggregate(QObject *parent = 0);
virtual ~Aggregate();
~Aggregate() override;
void add(QObject *component);
void remove(QObject *component);