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:
authorCampbell Barton <ideasman42@gmail.com>2018-12-12 04:50:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-12 04:50:58 +0300
commite757c4a3bec8b0e8d198531a28327332af00a9ba (patch)
tree4707fd51cffdbe932123a29bbcfe4528fc9c2b55 /source/blender/compositor/intern/COM_Node.h
parentba8d6ca3dd92eed5d679caa28f5446cd07b8a112 (diff)
Cleanup: use colon separator after parameter
Helps separate variable names from descriptive text. Was already used in some parts of the code, double space and dashes were used elsewhere.
Diffstat (limited to 'source/blender/compositor/intern/COM_Node.h')
-rw-r--r--source/blender/compositor/intern/COM_Node.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/blender/compositor/intern/COM_Node.h b/source/blender/compositor/intern/COM_Node.h
index 9dea9d715a8..ab70bd6e617 100644
--- a/source/blender/compositor/intern/COM_Node.h
+++ b/source/blender/compositor/intern/COM_Node.h
@@ -105,13 +105,13 @@ public:
/**
* \brief set the reference to the bNode
* \note used in Node instances to receive the storage/settings and complex node for highlight during execution
- * \param bNode
+ * \param bNode:
*/
void setbNode(bNode *node) {this->m_editorNode = node;}
/**
* \brief set the reference to the bNodeTree
- * \param bNodeTree
+ * \param bNodeTree:
*/
void setbNodeTree(bNodeTree *nodetree) {this->m_editorNodeTree = nodetree;}
@@ -127,21 +127,21 @@ public:
/**
* get the reference to a certain outputsocket
- * \param index
+ * \param index:
* the index of the needed outputsocket
*/
NodeOutput *getOutputSocket(const unsigned int index) const;
/**
* get the reference to the first outputsocket
- * \param index
+ * \param index:
* the index of the needed outputsocket
*/
inline NodeOutput *getOutputSocket() const { return getOutputSocket(0); }
/**
* get the reference to a certain inputsocket
- * \param index
+ * \param index:
* the index of the needed inputsocket
*/
NodeInput *getInputSocket(const unsigned int index) const;
@@ -153,7 +153,7 @@ public:
/**
* \brief Is this node in the active group (the group that is being edited)
- * \param isInActiveGroup
+ * \param isInActiveGroup:
*/
void setIsInActiveGroup(bool value) { this->m_inActiveGroup = value; }
@@ -170,8 +170,8 @@ public:
*
* \todo this must be described further
*
- * \param system the ExecutionSystem where the operations need to be added
- * \param context reference to the CompositorContext
+ * \param system: the ExecutionSystem where the operations need to be added
+ * \param context: reference to the CompositorContext
*/
virtual void convertToOperations(NodeConverter &converter, const CompositorContext &context) const = 0;
@@ -193,7 +193,7 @@ protected:
/**
* \brief add an NodeInput to the collection of inputsockets
* \note may only be called in an constructor
- * \param socket the NodeInput to add
+ * \param socket: the NodeInput to add
*/
void addInputSocket(DataType datatype);
void addInputSocket(DataType datatype, bNodeSocket *socket);
@@ -201,7 +201,7 @@ protected:
/**
* \brief add an NodeOutput to the collection of outputsockets
* \note may only be called in an constructor
- * \param socket the NodeOutput to add
+ * \param socket: the NodeOutput to add
*/
void addOutputSocket(DataType datatype);
void addOutputSocket(DataType datatype, bNodeSocket *socket);