From 9ce14357bb94b9dd92ad40bf43ef435a257b355a Mon Sep 17 00:00:00 2001 From: cilix42 Date: Mon, 16 Jun 2008 16:17:03 +0000 Subject: [PATCH] Address compile warning --- src/live_effects/effect.cpp | 4 ++-- 1 file 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(&is_visible) ); } -- 2.30.2