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 a16e71a9b27..28b59397af9 100644
--- a/source/blender/compositor/intern/COM_Node.h
+++ b/source/blender/compositor/intern/COM_Node.h
@@ -65,12 +65,12 @@ class Node {
/**
* \brief the list of actual input-sockets \see NodeInput
*/
- blender::Vector<NodeInput *> inputs;
+ Vector<NodeInput *> inputs;
/**
* \brief the list of actual output-sockets \see NodeOutput
*/
- blender::Vector<NodeOutput *> outputs;
+ Vector<NodeOutput *> outputs;
public:
Node(bNode *editorNode, bool create_sockets = true);
@@ -115,7 +115,7 @@ class Node {
/**
* \brief get access to the vector of input sockets
*/
- const blender::Vector<NodeInput *> &getInputSockets() const
+ const Vector<NodeInput *> &getInputSockets() const
{
return this->inputs;
}
@@ -123,7 +123,7 @@ class Node {
/**
* \brief get access to the vector of input sockets
*/
- const blender::Vector<NodeOutput *> &getOutputSockets() const
+ const Vector<NodeOutput *> &getOutputSockets() const
{
return this->outputs;
}