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_Node.h')
-rw-r--r--source/blender/compositor/intern/COM_Node.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/compositor/intern/COM_Node.h b/source/blender/compositor/intern/COM_Node.h
index 41283b821bb..bd8b37276a0 100644
--- a/source/blender/compositor/intern/COM_Node.h
+++ b/source/blender/compositor/intern/COM_Node.h
@@ -62,12 +62,12 @@ class Node {
/**
* \brief the list of actual input-sockets \see NodeInput
*/
- Vector<NodeInput *> inputs;
+ Vector<NodeInput *> inputs_;
/**
* \brief the list of actual output-sockets \see NodeOutput
*/
- Vector<NodeOutput *> outputs;
+ Vector<NodeOutput *> outputs_;
public:
Node(bNode *editor_node, bool create_sockets = true);
@@ -114,7 +114,7 @@ class Node {
*/
const Vector<NodeInput *> &get_input_sockets() const
{
- return this->inputs;
+ return inputs_;
}
/**
@@ -122,7 +122,7 @@ class Node {
*/
const Vector<NodeOutput *> &get_output_sockets() const
{
- return this->outputs;
+ return outputs_;
}
/**