summaryrefslogtreecommitdiffstats
path: root/src/object/sp-hatch-path.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/object/sp-hatch-path.h')
-rw-r--r--src/object/sp-hatch-path.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/object/sp-hatch-path.h b/src/object/sp-hatch-path.h
index 11fc274ec..ca00ae79d 100644
--- a/src/object/sp-hatch-path.h
+++ b/src/object/sp-hatch-path.h
@@ -32,7 +32,7 @@ class DrawingShape;
class SPHatchPath : public SPObject {
public:
SPHatchPath();
- virtual ~SPHatchPath();
+ ~SPHatchPath() override;
SVGLength offset;
@@ -49,10 +49,10 @@ public:
SPCurve *calculateRenderCurve(unsigned key) const;
protected:
- virtual void build(SPDocument* doc, Inkscape::XML::Node* repr);
- virtual void release();
- virtual void set(unsigned int key, const gchar* value);
- virtual void update(SPCtx* ctx, unsigned int flags);
+ void build(SPDocument* doc, Inkscape::XML::Node* repr) override;
+ void release() override;
+ void set(unsigned int key, const gchar* value) override;
+ void update(SPCtx* ctx, unsigned int flags) override;
private:
class View {