From: joncruz Date: Wed, 27 Feb 2008 04:54:45 +0000 (+0000) Subject: Fixed initialization order problem X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d570df7dbb0ebd5a7268bda9afd56da269a68dc3;p=inkscape.git Fixed initialization order problem --- 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) {