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 48e5ab7f75b..39dbb8aa873 100644
--- a/source/blender/compositor/operations/COM_CropOperation.h
+++ b/source/blender/compositor/operations/COM_CropOperation.h
@@ -27,21 +27,21 @@
class CropBaseOperation : public NodeOperation {
protected:
- SocketReader *inputOperation;
- NodeTwoXYs *settings;
- bool relative;
- int xmax;
- int xmin;
- int ymax;
- int ymin;
+ SocketReader *m_inputOperation;
+ NodeTwoXYs *m_settings;
+ bool m_relative;
+ int m_xmax;
+ int m_xmin;
+ int m_ymax;
+ int m_ymin;
void updateArea();
public:
CropBaseOperation();
void initExecution();
void deinitExecution();
- void setCropSettings(NodeTwoXYs *settings) { this->settings = settings; }
- void setRelative(bool rel) { this->relative = rel; }
+ void setCropSettings(NodeTwoXYs *settings) { this->m_settings = settings; }
+ void setRelative(bool rel) { this->m_relative = rel; }
};
class CropOperation : public CropBaseOperation {