summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-line_segment.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/live_effects/lpe-line_segment.h')
-rw-r--r--src/live_effects/lpe-line_segment.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/live_effects/lpe-line_segment.h b/src/live_effects/lpe-line_segment.h
index c5c0e7476..bde36f2ee 100644
--- a/src/live_effects/lpe-line_segment.h
+++ b/src/live_effects/lpe-line_segment.h
@@ -30,11 +30,11 @@ enum EndType {
class LPELineSegment : public Effect {
public:
LPELineSegment(LivePathEffectObject *lpeobject);
- virtual ~LPELineSegment();
+ ~LPELineSegment() override;
- virtual void doBeforeEffect (SPLPEItem const* lpeitem);
+ void doBeforeEffect (SPLPEItem const* lpeitem) override;
- virtual Geom::PathVector doEffect_path (Geom::PathVector const & path_in);
+ Geom::PathVector doEffect_path (Geom::PathVector const & path_in) override;
//private:
EnumParam<EndType> end_type;