summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-circle_with_radius.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-04-09 21:12:17 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-04-09 21:12:17 +0000
commit8b69d31378f589b16f5534fde7b4c9f28c77b817 (patch)
treed0dd31312892417b6a2b01a818cbb1633f17c812 /src/live_effects/lpe-circle_with_radius.cpp
parentchange to c++ style casts in Effect::New (diff)
downloadinkscape-8b69d31378f589b16f5534fde7b4c9f28c77b817.tar.gz
inkscape-8b69d31378f589b16f5534fde7b4c9f28c77b817.zip
change doEffect functions to use const& parameters
(bzr r5394)
Diffstat (limited to 'src/live_effects/lpe-circle_with_radius.cpp')
-rw-r--r--src/live_effects/lpe-circle_with_radius.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/lpe-circle_with_radius.cpp b/src/live_effects/lpe-circle_with_radius.cpp
index ec9d4f74d..c5dfebfad 100644
--- a/src/live_effects/lpe-circle_with_radius.cpp
+++ b/src/live_effects/lpe-circle_with_radius.cpp
@@ -65,7 +65,7 @@ void _circle(Geom::Point center, double radius, std::vector<Geom::Path> &path_ou
}
std::vector<Geom::Path>
-LPECircleWithRadius::doEffect_path (std::vector<Geom::Path> &path_in)
+LPECircleWithRadius::doEffect_path (std::vector<Geom::Path> const & path_in)
{
std::vector<Geom::Path> path_out = std::vector<Geom::Path>();