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.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/compositor/intern/COM_Node.cpp') diff --git a/source/blender/compositor/intern/COM_Node.cpp b/source/blender/compositor/intern/COM_Node.cpp index 06b6164be3c..15b8a3933a7 100644 --- a/source/blender/compositor/intern/COM_Node.cpp +++ b/source/blender/compositor/intern/COM_Node.cpp @@ -41,7 +41,7 @@ Node::Node(bNode *editorNode, bool create_sockets) { - this->editorNode = editorNode; + this->m_editorNode = editorNode; if (create_sockets) { bNodeSocket *input = (bNodeSocket *)editorNode->inputs.first; @@ -66,12 +66,12 @@ Node::Node(bNode *editorNode, bool create_sockets) } Node::Node() { - this->editorNode = NULL; + this->m_editorNode = NULL; } bNode *Node::getbNode() { - return this->editorNode; + return this->m_editorNode; } void Node::addSetValueOperation(ExecutionSystem *graph, InputSocket *inputsocket, int editorNodeInputSocketIndex) -- cgit v1.2.3