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_ColorRampOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_ColorRampOperation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/compositor/operations/COM_ColorRampOperation.h b/source/blender/compositor/operations/COM_ColorRampOperation.h
index eef5321eb19..42bc6b943b7 100644
--- a/source/blender/compositor/operations/COM_ColorRampOperation.h
+++ b/source/blender/compositor/operations/COM_ColorRampOperation.h
@@ -30,8 +30,8 @@ private:
/**
* Cached reference to the inputProgram
*/
- SocketReader *inputProgram;
- ColorBand *colorBand;
+ SocketReader *m_inputProgram;
+ ColorBand *m_colorBand;
public:
ColorRampOperation();
@@ -51,7 +51,7 @@ public:
void deinitExecution();
void setColorBand(ColorBand *colorBand) {
- this->colorBand = colorBand;
+ this->m_colorBand = colorBand;
}