From: dooglus Date: Tue, 18 Sep 2007 22:31:43 +0000 (+0000) Subject: Fix 1797488: use set_link() rather than modifying the members directly. X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=e474a59e013cfd72267b6e4635d9c7c0567e023b;p=synfig.git Fix 1797488: use set_link() rather than modifying the members directly. git-svn-id: http://svn.voria.com/code@717 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-core/trunk/src/synfig/valuenode_segcalctangent.cpp b/synfig-core/trunk/src/synfig/valuenode_segcalctangent.cpp index b9281e8..8f222e3 100644 --- a/synfig-core/trunk/src/synfig/valuenode_segcalctangent.cpp +++ b/synfig-core/trunk/src/synfig/valuenode_segcalctangent.cpp @@ -60,8 +60,8 @@ ValueNode_SegCalcTangent::ValueNode_SegCalcTangent(const ValueBase::Type &x): if(x!=ValueBase::TYPE_VECTOR) throw Exception::BadType(ValueBase::type_name(x)); - segment_=ValueNode_Composite::create(ValueBase::TYPE_SEGMENT); - amount_=ValueNode_Const::create(Real(0.5)); + set_link("segment",ValueNode_Const::create(ValueBase::TYPE_SEGMENT)); + set_link("amount",ValueNode_Const::create(Real(0.5))); } ValueNode_SegCalcTangent* diff --git a/synfig-core/trunk/src/synfig/valuenode_segcalcvertex.cpp b/synfig-core/trunk/src/synfig/valuenode_segcalcvertex.cpp index cf047eb..15956cd 100644 --- a/synfig-core/trunk/src/synfig/valuenode_segcalcvertex.cpp +++ b/synfig-core/trunk/src/synfig/valuenode_segcalcvertex.cpp @@ -59,9 +59,8 @@ ValueNode_SegCalcVertex::ValueNode_SegCalcVertex(const ValueBase::Type &x): if(x!=ValueBase::TYPE_VECTOR) throw Exception::BadType(ValueBase::type_name(x)); - segment_=ValueNode_Composite::create(ValueBase::TYPE_SEGMENT); - amount_=ValueNode_Const::create(Real(0.5)); - + set_link("segment",ValueNode_Const::create(ValueBase::TYPE_SEGMENT)); + set_link("amount",ValueNode_Const::create(Real(0.5))); } ValueNode_SegCalcVertex*