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:
authorManuel Castilla <manzanillawork@gmail.com>2021-10-14 00:01:53 +0300
committerManuel Castilla <manzanillawork@gmail.com>2021-10-14 00:41:14 +0300
commitf609b05b11cedb021fb05a89db124d979ab9de9b (patch)
tree60dbb95c66a44823efa170f61c5570f195c857a0 /source/blender/compositor/operations/COM_ViewerOperation.cc
parent1c42d4930a24d639b3aa561b9a8b4bbce05977e0 (diff)
Cleanup: use `_` suffix for non-public data members in Compositor
For code style and clarity.
Diffstat (limited to 'source/blender/compositor/operations/COM_ViewerOperation.cc')
-rw-r--r--source/blender/compositor/operations/COM_ViewerOperation.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/compositor/operations/COM_ViewerOperation.cc b/source/blender/compositor/operations/COM_ViewerOperation.cc
index 440deea7796..be8fe1416d0 100644
--- a/source/blender/compositor/operations/COM_ViewerOperation.cc
+++ b/source/blender/compositor/operations/COM_ViewerOperation.cc
@@ -50,8 +50,8 @@ ViewerOperation::ViewerOperation()
depth_input_ = nullptr;
rd_ = nullptr;
view_name_ = nullptr;
- flags.use_viewer_border = true;
- flags.is_viewer_operation = true;
+ flags_.use_viewer_border = true;
+ flags_.is_viewer_operation = true;
}
void ViewerOperation::init_execution()