Fix 1797488: use set_link() rather than modifying the members directly.
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Tue, 18 Sep 2007 22:31:43 +0000 (22:31 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Tue, 18 Sep 2007 22:31:43 +0000 (22:31 +0000)
git-svn-id: http://svn.voria.com/code@717 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-core/trunk/src/synfig/valuenode_segcalctangent.cpp
synfig-core/trunk/src/synfig/valuenode_segcalcvertex.cpp

index b9281e8..8f222e3 100644 (file)
@@ -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*
index cf047eb..15956cd 100644 (file)
@@ -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*