diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2008-04-09 21:12:17 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2008-04-09 21:12:17 +0000 |
| commit | 8b69d31378f589b16f5534fde7b4c9f28c77b817 (patch) | |
| tree | d0dd31312892417b6a2b01a818cbb1633f17c812 /src/live_effects/lpe-vonkoch.cpp | |
| parent | change to c++ style casts in Effect::New (diff) | |
| download | inkscape-8b69d31378f589b16f5534fde7b4c9f28c77b817.tar.gz inkscape-8b69d31378f589b16f5534fde7b4c9f28c77b817.zip | |
change doEffect functions to use const& parameters
(bzr r5394)
Diffstat (limited to 'src/live_effects/lpe-vonkoch.cpp')
| -rw-r--r-- | src/live_effects/lpe-vonkoch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/lpe-vonkoch.cpp b/src/live_effects/lpe-vonkoch.cpp index 760295ed7..a4b3062d9 100644 --- a/src/live_effects/lpe-vonkoch.cpp +++ b/src/live_effects/lpe-vonkoch.cpp @@ -76,7 +76,7 @@ LPEVonKoch::~LPEVonKoch() } std::vector<Geom::Path> -LPEVonKoch::doEffect_path (std::vector<Geom::Path> & path_in) +LPEVonKoch::doEffect_path (std::vector<Geom::Path> const & path_in) { using namespace Geom; std::vector<Geom::Path> generating_path = path_from_piecewise(generator.get_pwd2(),.01);//TODO what should that tolerance be? |
