Don't show 'Duplicate' in the Convert menu. The user doesn't need to see it, since...
[synfig.git] / synfig-core / trunk / src / synfig / valuenode.h
index 145a3dd..99280b8 100644 (file)
@@ -1,6 +1,6 @@
 /* === S Y N F I G ========================================================= */
 /*!    \file valuenode.h
-**     \brief Template Header
+**     \brief Header file for implementation of the "Placeholder" valuenode conversion.
 **
 **     $Id$
 **
@@ -173,7 +173,7 @@ public:
 public:
 
        //! Returns the value of the ValueNode at time \a t
-       virtual ValueBase operator()(Time t)const
+       virtual ValueBase operator()(Time /*t*/)const
                { return ValueBase(); }
 
        //! \internal Sets the id of the ValueNode
@@ -256,7 +256,7 @@ public:
        static Handle create(ValueBase::Type type=ValueBase::TYPE_NIL);
 
 protected:
-       virtual void get_times_vfunc(Node::time_set &set) const {}
+       virtual void get_times_vfunc(Node::time_set &/*set*/) const {}
 }; // END of class PlaceholderValueNode