Avoid a warning from g++ 4.3.
[synfig.git] / synfig-core / trunk / src / synfig / valuenode.h
index 4f91873..62940c3 100644 (file)
        if (get_type() != ValueBase::TYPE_NIL &&                                                        \
                !(ValueBase::same_type_as(value->get_type(), type)) &&                  \
                !PlaceholderValueNode::Handle::cast_dynamic(value)) {                   \
-               error("%s:%d wrong type for %s: need %s but got %s",                    \
+               error(_("%s:%d wrong type for %s: need %s but got %s"),                 \
                          __FILE__, __LINE__,                                                                           \
                          link_local_name(i).c_str(),                                                           \
-                         ValueBase::type_name(type).c_str(),                                           \
-                         ValueBase::type_name(value->get_type()).c_str());             \
+                         ValueBase::type_local_name(type).c_str(),                                     \
+                         ValueBase::type_local_name(value->get_type()).c_str());       \
                return false;                                                                                                   \
        }                                                                                                                                       \
        variable = value;                                                                                                       \
@@ -212,6 +212,9 @@ public:
        //! Returns the localized name of the ValueNode type
        virtual String get_local_name()const=0;
 
+       //! Return a full description of the ValueNode and its parentage
+       virtual String get_description(bool show_exported_name = true)const;
+
 
        //! \writeme
        virtual ValueNode* clone(const GUID& deriv_guid=GUID())const=0;
@@ -346,6 +349,9 @@ public:
        ValueNode::LooseHandle get_link(int i)const;
        ValueNode::LooseHandle get_link(const String &name)const { return get_link(get_link_index_from_name(name)); }
 
+       String
+       get_description(int index, bool show_exported_name = true)const;
+
 protected:
        //! Sets the type of the ValueNode
        void set_type(ValueBase::Type t) { ValueNode::set_type(t); }