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 b11a06f7749..0b9a07a57ca 100644
--- a/source/blender/compositor/operations/COM_ConvertColorProfileOperation.h
+++ b/source/blender/compositor/operations/COM_ConvertColorProfileOperation.h
@@ -34,22 +34,22 @@ private:
/**
* Cached reference to the inputProgram
*/
- SocketReader *inputOperation;
+ SocketReader *m_inputOperation;
/**
* @brief color profile where to convert from
*/
- int fromProfile;
+ int m_fromProfile;
/**
* @brief color profile where to convert to
*/
- int toProfile;
+ int m_toProfile;
/**
* @brief is color predivided
*/
- bool predivided;
+ bool m_predivided;
public:
/**
* Default constructor
@@ -71,8 +71,8 @@ public:
*/
void deinitExecution();
- void setFromColorProfile(int colorProfile) { this->fromProfile = colorProfile; }
- void setToColorProfile(int colorProfile) { this->toProfile = colorProfile; }
- void setPredivided(bool predivided) { this->predivided = predivided; }
+ void setFromColorProfile(int colorProfile) { this->m_fromProfile = colorProfile; }
+ void setToColorProfile(int colorProfile) { this->m_toProfile = colorProfile; }
+ void setPredivided(bool predivided) { this->m_predivided = predivided; }
};
#endif