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.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/compositor/operations/COM_SetValueOperation.h b/source/blender/compositor/operations/COM_SetValueOperation.h
index 25f5e806eaf..bf914d2f918 100644
--- a/source/blender/compositor/operations/COM_SetValueOperation.h
+++ b/source/blender/compositor/operations/COM_SetValueOperation.h
@@ -28,7 +28,7 @@ namespace blender::compositor {
*/
class SetValueOperation : public ConstantOperation {
private:
- float m_value;
+ float value_;
public:
/**
@@ -38,16 +38,16 @@ class SetValueOperation : public ConstantOperation {
const float *get_constant_elem() override
{
- return &m_value;
+ return &value_;
}
float getValue()
{
- return m_value;
+ return value_;
}
void setValue(float value)
{
- m_value = value;
+ value_ = value;
}
/**