Remove some debugging printf() calls I left in accidentally in r1282.
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Sat, 12 Jan 2008 17:06:05 +0000 (17:06 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Sat, 12 Jan 2008 17:06:05 +0000 (17:06 +0000)
git-svn-id: http://svn.voria.com/code@1333 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-studio/trunk/src/synfigapp/actions/valuedescconnect.cpp

index 062edee..2979ed8 100644 (file)
@@ -111,15 +111,10 @@ Action::ValueDescConnect::is_candidate(const ParamList &x)
                        ValueDesc value_desc=x.find("dest")->second.get_value_desc();
                        ValueNode::Handle value_node=x.find("src")->second.get_value_node();
                        if(value_desc.get_value_type()==value_node->get_type())
-                       {
-                               printf("%s:%d\n", __FILE__, __LINE__);
                                return true;
-                       }
                }
-               printf("%s:%d\n", __FILE__, __LINE__);
                return true;
        }
-       printf("%s:%d\n", __FILE__, __LINE__);
        return false;
 }