summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2008-02-27 04:54:45 +0000
committerjoncruz <joncruz@users.sourceforge.net>2008-02-27 04:54:45 +0000
commit518bda5e829c3bbd10e7c0d15ca1752799cd9d2d (patch)
treed2ef053dfc096fdf0f6b921c0955906c515a9ed2 /src
parentFixed run-time error (diff)
downloadinkscape-518bda5e829c3bbd10e7c0d15ca1752799cd9d2d.tar.gz
inkscape-518bda5e829c3bbd10e7c0d15ca1752799cd9d2d.zip
Fixed initialization order problem
(bzr r4878)
Diffstat (limited to 'src')
-rw-r--r--src/live_effects/lpe-vonkoch.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/lpe-vonkoch.cpp b/src/live_effects/lpe-vonkoch.cpp
index fa05cb5ff..8a5326638 100644
--- a/src/live_effects/lpe-vonkoch.cpp
+++ b/src/live_effects/lpe-vonkoch.cpp
@@ -33,8 +33,8 @@ namespace LivePathEffect {
LPEVonKoch::LPEVonKoch(LivePathEffectObject *lpeobject) :
Effect(lpeobject),
- generator(_("Generating path"), _("Path whos segments define the fractal"), "generator", &wr, this, "M0,0 L3,0 M0,1 L1,1 M 2,1 L3,1"),
nbgenerations(_("Nb of generations"), _("Depth of the recursion --- keep low!!"), "nbgenerations", &wr, this, 1),
+ generator(_("Generating path"), _("Path whos segments define the fractal"), "generator", &wr, this, "M0,0 L3,0 M0,1 L1,1 M 2,1 L3,1"),
drawall(_("Draw all generations"), _("If unchecked, draw only the last generation"), "drawall", &wr, this, false),
vertical_pattern(_("Original path is vertical"), _("Rotates the original 90 degrees, before generating the fractal"), "vertical", &wr, this, false)
{