From: johanengelen Date: Thu, 8 Nov 2007 10:35:51 +0000 (+0000) Subject: try to fix "hidden method" warning X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5464192b715ae20cdfd1dab5d732d82022772ff0;p=inkscape.git try to fix "hidden method" warning --- diff --git a/src/live_effects/lpe-slant.h b/src/live_effects/lpe-slant.h index ca4a404e5..bdfe55383 100644 --- a/src/live_effects/lpe-slant.h +++ b/src/live_effects/lpe-slant.h @@ -24,8 +24,9 @@ public: LPESlant(LivePathEffectObject *lpeobject); virtual ~LPESlant(); - void doEffect(SPCurve * curve); - + using Effect::doEffect; + virtual void doEffect(SPCurve * curve); + private: ScalarParam factor; PointParam center;