From: dooglus Date: Thu, 27 Sep 2007 20:56:48 +0000 (+0000) Subject: Fixed a typo in the previous commit. X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=2563a81f39d63a860d9bc459715e63afa75023db;p=synfig.git Fixed a typo in the previous commit. git-svn-id: http://svn.voria.com/code@780 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-core/trunk/src/synfig/valuenode_subtract.cpp b/synfig-core/trunk/src/synfig/valuenode_subtract.cpp index f90aed3..9d925f7 100644 --- a/synfig-core/trunk/src/synfig/valuenode_subtract.cpp +++ b/synfig-core/trunk/src/synfig/valuenode_subtract.cpp @@ -80,7 +80,7 @@ synfig::ValueNode_Subtract::ValueNode_Subtract(const ValueBase &value): break; case ValueBase::TYPE_TIME: set_link("lhs",ValueNode_Const::create(value.get(Time()))); - set_link("rhs",ValueNode_Const::create(Time(0,0))); + set_link("rhs",ValueNode_Const::create(Time(0))); break; case ValueBase::TYPE_VECTOR: set_link("lhs",ValueNode_Const::create(value.get(Vector())));