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_CropOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_CropOperation.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/compositor/operations/COM_CropOperation.h b/source/blender/compositor/operations/COM_CropOperation.h
index 49d0a70fb4e..50d4d3c5126 100644
--- a/source/blender/compositor/operations/COM_CropOperation.h
+++ b/source/blender/compositor/operations/COM_CropOperation.h
@@ -24,13 +24,13 @@ namespace blender::compositor {
class CropBaseOperation : public MultiThreadedOperation {
protected:
- SocketReader *m_inputOperation;
- NodeTwoXYs *m_settings;
- bool m_relative;
- int m_xmax;
- int m_xmin;
- int m_ymax;
- int m_ymin;
+ SocketReader *inputOperation_;
+ NodeTwoXYs *settings_;
+ bool relative_;
+ int xmax_;
+ int xmin_;
+ int ymax_;
+ int ymin_;
void updateArea();
@@ -40,11 +40,11 @@ class CropBaseOperation : public MultiThreadedOperation {
void deinitExecution() override;
void setCropSettings(NodeTwoXYs *settings)
{
- m_settings = settings;
+ settings_ = settings;
}
void setRelative(bool rel)
{
- m_relative = rel;
+ relative_ = rel;
}
};