mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
clang-tidy : Remove redundant 'virtual' and add 'override'
This commit is contained in:
@@ -32,13 +32,13 @@ class RimNamedObject : public caf::PdmObject
|
||||
|
||||
public:
|
||||
RimNamedObject(void);
|
||||
virtual ~RimNamedObject(void);
|
||||
~RimNamedObject(void) override;
|
||||
|
||||
QString name() const;
|
||||
void setName(const QString& name);
|
||||
|
||||
protected:
|
||||
virtual caf::PdmFieldHandle* userDescriptionField() override;
|
||||
caf::PdmFieldHandle* userDescriptionField() override;
|
||||
|
||||
// To be used from derived objects when manipulating visibility and ui ordering
|
||||
caf::PdmFieldHandle* nameField();
|
||||
|
||||
Reference in New Issue
Block a user