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_SetValueOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_SetValueOperation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/compositor/operations/COM_SetValueOperation.h b/source/blender/compositor/operations/COM_SetValueOperation.h
index 2f4a6ec0dc8..dce0c3299ac 100644
--- a/source/blender/compositor/operations/COM_SetValueOperation.h
+++ b/source/blender/compositor/operations/COM_SetValueOperation.h
@@ -31,7 +31,7 @@
*/
class SetValueOperation : public NodeOperation {
private:
- float value;
+ float m_value;
public:
/**
@@ -39,8 +39,8 @@ public:
*/
SetValueOperation();
- const float getValue() { return this->value; }
- void setValue(float value) { this->value = value; }
+ const float getValue() { return this->m_value; }
+ void setValue(float value) { this->m_value = value; }
/**