diff options
| author | Maximilian Albert <maximilian.albert@gmail.com> | 2008-06-16 16:17:03 +0000 |
|---|---|---|
| committer | cilix42 <cilix42@users.sourceforge.net> | 2008-06-16 16:17:03 +0000 |
| commit | d001faba3e53242204ed94b97c9d54a20e8e06b9 (patch) | |
| tree | 15e55e344829f2e6f9e5a1a75729203143dbb889 /src/live_effects/effect.cpp | |
| parent | New LPE: Angle bisector (diff) | |
| download | inkscape-d001faba3e53242204ed94b97c9d54a20e8e06b9.tar.gz inkscape-d001faba3e53242204ed94b97c9d54a20e8e06b9.zip | |
Address compile warning
(bzr r5961)
Diffstat (limited to 'src/live_effects/effect.cpp')
| -rw-r--r-- | src/live_effects/effect.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index 81c9a6384..164447387 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -197,10 +197,10 @@ Effect::Effect(LivePathEffectObject *lpeobject) : oncanvasedit_it(0), is_visible(_("Is visible?"), _("If unchecked, the effect remains applied to the object but is temporarily disabled on canvas"), "is_visible", &wr, this, true), done_pathparam_set(false), - provides_own_flash_paths(true), // is automatically set to false if providesOwnFlashPaths() is not overridden show_orig_path(false), lpeobj(lpeobject), - concatenate_before_pwd2(false) + concatenate_before_pwd2(false), + provides_own_flash_paths(true) // is automatically set to false if providesOwnFlashPaths() is not overridden { registerParameter( dynamic_cast<Parameter *>(&is_visible) ); } |
