Mercurial > hg > svgui
diff layer/Layer.h @ 1406:a18e78b9c78b fix-static-analysis
Use override throughout
author | Chris Cannam |
---|---|
date | Mon, 26 Nov 2018 13:52:27 +0000 |
parents | c39f2d439d59 |
children | 05d614f6e46d |
line wrap: on
line diff
--- a/layer/Layer.h Thu Nov 22 14:55:38 2018 +0000 +++ b/layer/Layer.h Mon Nov 26 13:52:27 2018 +0000 @@ -118,9 +118,9 @@ return true; } - virtual QString getPropertyContainerIconName() const; + QString getPropertyContainerIconName() const override; - virtual QString getPropertyContainerName() const { + QString getPropertyContainerName() const override { if (m_presentationName != "") return m_presentationName; else return objectName(); } @@ -366,8 +366,8 @@ * this superclass implementation with extra attributes describing * their particular properties. */ - virtual void toXml(QTextStream &stream, QString indent = "", - QString extraAttributes = "") const; + void toXml(QTextStream &stream, QString indent = "", + QString extraAttributes = "") const override; /** * Set the particular properties of a layer (those specific to the @@ -412,7 +412,7 @@ */ virtual bool isLayerDormant(const LayerGeometryProvider *v) const; - virtual PlayParameters *getPlayParameters(); + PlayParameters *getPlayParameters() override; /** * True if this layer will need to place text labels when it is @@ -593,9 +593,9 @@ AddMeasurementRectCommand(Layer *layer, MeasureRect rect) : m_layer(layer), m_rect(rect) { } - virtual QString getName() const; - virtual void execute(); - virtual void unexecute(); + QString getName() const override; + void execute() override; + void unexecute() override; private: Layer *m_layer; @@ -608,9 +608,9 @@ DeleteMeasurementRectCommand(Layer *layer, MeasureRect rect) : m_layer(layer), m_rect(rect) { } - virtual QString getName() const; - virtual void execute(); - virtual void unexecute(); + QString getName() const override; + void execute() override; + void unexecute() override; private: Layer *m_layer;