Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/compositor/intern/COM_NodeGraph.h')
-rw-r--r--source/blender/compositor/intern/COM_NodeGraph.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/compositor/intern/COM_NodeGraph.h b/source/blender/compositor/intern/COM_NodeGraph.h
index 12aca8f6069..cc628ebb724 100644
--- a/source/blender/compositor/intern/COM_NodeGraph.h
+++ b/source/blender/compositor/intern/COM_NodeGraph.h
@@ -47,19 +47,19 @@ class NodeGraph {
};
private:
- Vector<Node *> m_nodes;
- Vector<Link> m_links;
+ Vector<Node *> nodes_;
+ Vector<Link> links_;
public:
~NodeGraph();
const Vector<Node *> &nodes() const
{
- return m_nodes;
+ return nodes_;
}
const Vector<Link> &links() const
{
- return m_links;
+ return links_;
}
void from_bNodeTree(const CompositorContext &context, bNodeTree *tree);