From 69ab13a7dbc414b41bd9a04a49bac0a9127c583a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 26 Jun 2012 07:09:49 +0000 Subject: rename remaining class members with m_ prefix. --- source/blender/compositor/intern/COM_Node.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/compositor/intern/COM_Node.h') diff --git a/source/blender/compositor/intern/COM_Node.h b/source/blender/compositor/intern/COM_Node.h index 090b1455440..39309b442d1 100644 --- a/source/blender/compositor/intern/COM_Node.h +++ b/source/blender/compositor/intern/COM_Node.h @@ -51,12 +51,12 @@ private: /** * @brief stores the reference to the SDNA bNode struct */ - bNode *editorNode; + bNode *m_editorNode; /** * @brief Is this node part of the active group */ - bool inActiveGroup; + bool m_inActiveGroup; public: Node(bNode *editorNode, bool create_sockets = true); @@ -70,7 +70,7 @@ public: * @brief Is this node in the active group (the group that is being edited) * @param isInActiveGroup */ - void setIsInActiveGroup(bool isInActiveGroup) { this->inActiveGroup = isInActiveGroup; } + void setIsInActiveGroup(bool isInActiveGroup) { this->m_inActiveGroup = isInActiveGroup; } /** * @brief Is this node part of the active group @@ -78,7 +78,7 @@ public: * the active group will be the main tree (all nodes that are not part of a group will be active) * @return bool [false:true] */ - inline bool isInActiveGroup() { return this->inActiveGroup; } + inline bool isInActiveGroup() { return this->m_inActiveGroup; } /** * @brief convert node to operation -- cgit v1.2.3