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>2012-06-26 11:09:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-26 11:09:49 +0400
commit69ab13a7dbc414b41bd9a04a49bac0a9127c583a (patch)
tree6382b2d62abcfb16050f31152d2500793e615caf /source/blender/compositor/intern/COM_ExecutionSystem.h
parent6a1d82490e49d1f5d73b5082516b087d44010fb8 (diff)
rename remaining class members with m_ prefix.
Diffstat (limited to 'source/blender/compositor/intern/COM_ExecutionSystem.h')
-rw-r--r--source/blender/compositor/intern/COM_ExecutionSystem.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/source/blender/compositor/intern/COM_ExecutionSystem.h b/source/blender/compositor/intern/COM_ExecutionSystem.h
index 293a35b3518..e51bd7f3026 100644
--- a/source/blender/compositor/intern/COM_ExecutionSystem.h
+++ b/source/blender/compositor/intern/COM_ExecutionSystem.h
@@ -108,27 +108,27 @@ private:
/**
* @brief the context used during execution
*/
- CompositorContext context;
+ CompositorContext m_context;
/**
* @brief vector of nodes
*/
- vector<Node *> nodes;
+ vector<Node *> m_nodes;
/**
* @brief vector of operations
*/
- vector<NodeOperation *> operations;
+ vector<NodeOperation *> m_operations;
/**
* @brief vector of groups
*/
- vector<ExecutionGroup *> groups
+ vector<ExecutionGroup *> m_groups;
/**
* @brief vector of connections
- */;
- vector<SocketConnection *> connections;
+ */
+ vector<SocketConnection *> m_connections;
private: //methods
/**
@@ -200,27 +200,27 @@ public:
/**
* @brief get the reference to the compositor context
*/
- CompositorContext& getContext() { return this->context; }
+ CompositorContext& getContext() { return this->m_context; }
/**
* @brief get the reference to the compositor nodes
*/
- vector<Node *>& getNodes() { return this->nodes; }
+ vector<Node *>& getNodes() { return this->m_nodes; }
/**
* @brief get the reference to the compositor connections
*/
- vector<SocketConnection *>& getConnections() { return this->connections; }
+ vector<SocketConnection *>& getConnections() { return this->m_connections; }
/**
* @brief get the reference to the list of execution groups
*/
- vector<ExecutionGroup *>& getExecutionGroups() { return this->groups; }
+ vector<ExecutionGroup *>& getExecutionGroups() { return this->m_groups; }
/**
* @brief get the reference to the list of operations
*/
- vector<NodeOperation *>& getOperations() { return this->operations; }
+ vector<NodeOperation *>& getOperations() { return this->m_operations; }
private: