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_SocketProxyOperation.cc')
-rw-r--r--source/blender/compositor/operations/COM_SocketProxyOperation.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/compositor/operations/COM_SocketProxyOperation.cc b/source/blender/compositor/operations/COM_SocketProxyOperation.cc
index 18a09362591..fd37f0b5f4f 100644
--- a/source/blender/compositor/operations/COM_SocketProxyOperation.cc
+++ b/source/blender/compositor/operations/COM_SocketProxyOperation.cc
@@ -24,8 +24,8 @@ SocketProxyOperation::SocketProxyOperation(DataType type, bool use_conversion)
{
this->add_input_socket(type);
this->add_output_socket(type);
- flags.is_proxy_operation = true;
- flags.use_datatype_conversion = use_conversion;
+ flags_.is_proxy_operation = true;
+ flags_.use_datatype_conversion = use_conversion;
}
std::unique_ptr<MetaData> SocketProxyOperation::get_meta_data()