summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2008-05-20 05:48:41 +0000
committerjoncruz <joncruz@users.sourceforge.net>2008-05-20 05:48:41 +0000
commit93e878546eb67545b46c7417746fbfeafd0564e3 (patch)
tree5b4ff51f88d7e84f76da50e3fb951cc306fd46d5 /src
parentCmake: Fix issue with generated sp-marshall.h/.cpp not linking (diff)
downloadinkscape-93e878546eb67545b46c7417746fbfeafd0564e3.tar.gz
inkscape-93e878546eb67545b46c7417746fbfeafd0564e3.zip
Const fix for test
(bzr r5716)
Diffstat (limited to 'src')
-rw-r--r--src/live_effects/lpe-test-doEffect-stack.cpp2
-rw-r--r--src/live_effects/lpe-test-doEffect-stack.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/lpe-test-doEffect-stack.cpp b/src/live_effects/lpe-test-doEffect-stack.cpp
index 3aa143632..f3fb346fe 100644
--- a/src/live_effects/lpe-test-doEffect-stack.cpp
+++ b/src/live_effects/lpe-test-doEffect-stack.cpp
@@ -46,7 +46,7 @@ LPEdoEffectStackTest::doEffect (SPCurve * curve)
}
NArtBpath *
-LPEdoEffectStackTest::doEffect_nartbpath (NArtBpath * path_in)
+LPEdoEffectStackTest::doEffect_nartbpath (NArtBpath const * path_in)
{
if (step >= 2) {
return Effect::doEffect_nartbpath(path_in);
diff --git a/src/live_effects/lpe-test-doEffect-stack.h b/src/live_effects/lpe-test-doEffect-stack.h
index a48865399..cf2d480b1 100644
--- a/src/live_effects/lpe-test-doEffect-stack.h
+++ b/src/live_effects/lpe-test-doEffect-stack.h
@@ -26,7 +26,7 @@ public:
virtual ~LPEdoEffectStackTest();
virtual void doEffect (SPCurve * curve);
- virtual NArtBpath * doEffect_nartbpath (NArtBpath * path_in);
+ virtual NArtBpath * doEffect_nartbpath (NArtBpath const * path_in);
virtual std::vector<Geom::Path> doEffect_path (std::vector<Geom::Path> const & path_in);
virtual Geom::Piecewise<Geom::D2<Geom::SBasis> > doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwd2_in);