From f609b05b11cedb021fb05a89db124d979ab9de9b Mon Sep 17 00:00:00 2001 From: Manuel Castilla Date: Wed, 13 Oct 2021 23:01:53 +0200 Subject: Cleanup: use `_` suffix for non-public data members in Compositor For code style and clarity. --- source/blender/compositor/operations/COM_BokehBlurOperation.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/compositor/operations/COM_BokehBlurOperation.cc') diff --git a/source/blender/compositor/operations/COM_BokehBlurOperation.cc b/source/blender/compositor/operations/COM_BokehBlurOperation.cc index 80e7390e02f..3c8dd94c094 100644 --- a/source/blender/compositor/operations/COM_BokehBlurOperation.cc +++ b/source/blender/compositor/operations/COM_BokehBlurOperation.cc @@ -36,8 +36,8 @@ BokehBlurOperation::BokehBlurOperation() this->add_input_socket(DataType::Value); this->add_output_socket(DataType::Color); - flags.complex = true; - flags.open_cl = true; + flags_.complex = true; + flags_.open_cl = true; size_ = 1.0f; sizeavailable_ = false; -- cgit v1.2.3