Skip to content

Commit

Permalink
Be more careful about when to use rhandles.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Moore committed Jan 4, 2009
1 parent e8fd02b commit 6003045
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions synfig-core/trunk/src/synfig/valuenode_staticlist.h
Expand Up @@ -52,7 +52,8 @@ class ValueNode_StaticList : public LinkableValueNode
public:
typedef etl::handle<ValueNode_StaticList> Handle;
typedef etl::handle<const ValueNode_StaticList> ConstHandle;
typedef ValueNode::RHandle ListEntry;
typedef ValueNode::Handle ListEntry;
typedef ValueNode::RHandle ReplaceableListEntry;

protected:
ValueNode_StaticList(ValueBase::Type container_type=ValueBase::TYPE_NIL);
Expand All @@ -62,7 +63,7 @@ class ValueNode_StaticList : public LinkableValueNode
bool loop_;

public:
std::vector<ListEntry> list;
std::vector<ReplaceableListEntry> list;

public:

Expand Down

0 comments on commit 6003045

Please sign in to comment.