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.cpp')
-rw-r--r--source/blender/compositor/operations/COM_SocketProxyOperation.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/source/blender/compositor/operations/COM_SocketProxyOperation.cpp b/source/blender/compositor/operations/COM_SocketProxyOperation.cpp
index 83ed7af1ffb..2d54d6ae45d 100644
--- a/source/blender/compositor/operations/COM_SocketProxyOperation.cpp
+++ b/source/blender/compositor/operations/COM_SocketProxyOperation.cpp
@@ -18,10 +18,9 @@
#include "COM_SocketProxyOperation.h"
-SocketProxyOperation::SocketProxyOperation(DataType type, bool use_conversion) :
- NodeOperation(),
- m_use_conversion(use_conversion)
+SocketProxyOperation::SocketProxyOperation(DataType type, bool use_conversion)
+ : NodeOperation(), m_use_conversion(use_conversion)
{
- this->addInputSocket(type);
- this->addOutputSocket(type);
+ this->addInputSocket(type);
+ this->addOutputSocket(type);
}