summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2007-11-08 10:35:51 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2007-11-08 10:35:51 +0000
commite7f63678d323f1203042e291ad885d4994d23f8f (patch)
tree3c5d5a2a98b46d31cfad78d867153d4c8b68b074 /src
parentUpdate translations for Khmer (diff)
downloadinkscape-e7f63678d323f1203042e291ad885d4994d23f8f.tar.gz
inkscape-e7f63678d323f1203042e291ad885d4994d23f8f.zip
try to fix "hidden method" warning
(bzr r4046)
Diffstat (limited to 'src')
-rw-r--r--src/live_effects/lpe-slant.h5
1 files changed, 3 insertions, 2 deletions
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;