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_ConvertColorProfileOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_ConvertColorProfileOperation.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/compositor/operations/COM_ConvertColorProfileOperation.h b/source/blender/compositor/operations/COM_ConvertColorProfileOperation.h
index 6d7b19aa859..532fad86091 100644
--- a/source/blender/compositor/operations/COM_ConvertColorProfileOperation.h
+++ b/source/blender/compositor/operations/COM_ConvertColorProfileOperation.h
@@ -31,22 +31,22 @@ class ConvertColorProfileOperation : public NodeOperation {
/**
* Cached reference to the inputProgram
*/
- SocketReader *m_inputOperation;
+ SocketReader *inputOperation_;
/**
* \brief color profile where to convert from
*/
- int m_fromProfile;
+ int fromProfile_;
/**
* \brief color profile where to convert to
*/
- int m_toProfile;
+ int toProfile_;
/**
* \brief is color predivided
*/
- bool m_predivided;
+ bool predivided_;
public:
/**
@@ -71,15 +71,15 @@ class ConvertColorProfileOperation : public NodeOperation {
void setFromColorProfile(int colorProfile)
{
- m_fromProfile = colorProfile;
+ fromProfile_ = colorProfile;
}
void setToColorProfile(int colorProfile)
{
- m_toProfile = colorProfile;
+ toProfile_ = colorProfile;
}
void setPredivided(bool predivided)
{
- m_predivided = predivided;
+ predivided_ = predivided;
}
};