Use const qualifier for set_children_vocab parameter
authorCarlos Lopez <genetita@gmail.com>
Wed, 22 Dec 2010 16:22:44 +0000 (17:22 +0100)
committerCarlos Lopez <genetita@gmail.com>
Sun, 2 Jan 2011 07:19:35 +0000 (08:19 +0100)
synfig-core/src/synfig/valuenode.cpp
synfig-core/src/synfig/valuenode.h

index 6e1e6a4..57b3827 100644 (file)
@@ -713,7 +713,7 @@ LinkableValueNode::get_children_vocab()const
 }
 
 void
-LinkableValueNode::set_children_vocab(Vocab &newvocab)
+LinkableValueNode::set_children_vocab(const Vocab &newvocab)
 {
        children_vocab.assign(newvocab.begin(),newvocab.end());
 }
index 830cd30..076ea83 100644 (file)
@@ -418,7 +418,7 @@ protected:
        virtual Vocab get_children_vocab_vfunc()const=0;
 
        //! Virtual memebr to set the children vocabulary to a given value
-       virtual void set_children_vocab(Vocab& rvocab);
+       virtual void set_children_vocab(const Vocab& rvocab);
 }; // END of class LinkableValueNode
 
 /*!    \class ValueNodeList