Removed some old debug code that was left in accidentally.
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Sat, 16 Feb 2008 04:56:00 +0000 (04:56 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Sat, 16 Feb 2008 04:56:00 +0000 (04:56 +0000)
git-svn-id: http://svn.voria.com/code@1708 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-core/trunk/src/synfig/valuenode.cpp

index f1b46c0..c9d697b 100644 (file)
@@ -515,12 +515,11 @@ PlaceholderValueNode::PlaceholderValueNode(ValueBase::Type type):
 ValueNode*
 LinkableValueNode::clone(const GUID& deriv_guid)const
 {
-       // printf("%s:%d clone()\n", __FILE__, __LINE__);
-       { ValueNode* x(find_value_node(get_guid()^deriv_guid).get()); if(x)
-                                                                                                                                 {
-                                                                                                                                         printf("VALUENODE FOUND VALUENODE\n");
-                                                                                                                                         return x;
-                                                                                                                                 }}
+       {
+               ValueNode* x(find_value_node(get_guid()^deriv_guid).get());
+               if(x)
+                       return x;
+       }
 
        int i;
        LinkableValueNode *ret=create_new();