Fix 1797488: use set_link() rather than modifying the members directly.
[synfig.git] / synfig-core / trunk / src / synfig / valuenode_segcalcvertex.cpp
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*