diff options
Diffstat (limited to 'src/live_effects/lpe-circle_with_radius.h')
| -rw-r--r-- | src/live_effects/lpe-circle_with_radius.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/lpe-circle_with_radius.h b/src/live_effects/lpe-circle_with_radius.h index 97b5c8859..18215ae9b 100644 --- a/src/live_effects/lpe-circle_with_radius.h +++ b/src/live_effects/lpe-circle_with_radius.h @@ -23,10 +23,10 @@ namespace LivePathEffect { class LPECircleWithRadius : public Effect { public: LPECircleWithRadius(LivePathEffectObject *lpeobject); - virtual ~LPECircleWithRadius(); + ~LPECircleWithRadius() override; // Choose to implement one of the doEffect functions. You can delete or comment out the others. - virtual Geom::PathVector doEffect_path (Geom::PathVector const & path_in); + Geom::PathVector doEffect_path (Geom::PathVector const & path_in) override; private: // add the parameters for your effect here: |
