Mercurial > hg > svcore
diff base/PropertyContainer.h @ 1580:c01cbe41aeb5 fix-static-analysis
Use override throughout
author | Chris Cannam |
---|---|
date | Mon, 26 Nov 2018 13:48:45 +0000 |
parents | 48e9f538e6e9 |
children | 77543124651b |
line wrap: on
line diff
--- a/base/PropertyContainer.h Thu Nov 22 14:55:18 2018 +0000 +++ b/base/PropertyContainer.h Mon Nov 26 13:48:45 2018 +0000 @@ -162,9 +162,9 @@ SetPropertyCommand(PropertyContainer *pc, const PropertyName &pn, int); virtual ~SetPropertyCommand() { } - virtual void execute(); - virtual void unexecute(); - virtual QString getName() const; + void execute() override; + void unexecute() override; + QString getName() const override; protected: PropertyContainer *m_pc;