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/operations/COM_IDMaskOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_IDMaskOperation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/compositor/operations/COM_IDMaskOperation.h b/source/blender/compositor/operations/COM_IDMaskOperation.h
index 229e1b2dd82..23e8ec704e8 100644
--- a/source/blender/compositor/operations/COM_IDMaskOperation.h
+++ b/source/blender/compositor/operations/COM_IDMaskOperation.h
@@ -30,9 +30,9 @@ private:
/**
* Cached reference to the inputProgram
*/
- SocketReader *inputProgram;
+ SocketReader *m_inputProgram;
- float objectIndex;
+ float m_objectIndex;
public:
IDMaskOperation();
@@ -51,7 +51,7 @@ public:
*/
void deinitExecution();
- void setObjectIndex(float objectIndex) { this->objectIndex = objectIndex; }
+ void setObjectIndex(float objectIndex) { this->m_objectIndex = objectIndex; }
};
#endif