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:00:50 +0300
committerManuel Castilla <manzanillawork@gmail.com>2021-10-14 00:41:14 +0300
commitea79efef70da14100b591b50dcada819808f20b6 (patch)
tree4faf296870f1ab27ee33fee2b331fdb6b2d2bec4 /source/blender/compositor/intern/COM_NodeOperation.cc
parentecb8a574c752068de9f8d9eb98f54db1569df2f7 (diff)
Cleanup: remove `this->` for `m_` prefixed members in Compositor
For cleaning old code style as new code usually omit it.
Diffstat (limited to 'source/blender/compositor/intern/COM_NodeOperation.cc')
-rw-r--r--source/blender/compositor/intern/COM_NodeOperation.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/compositor/intern/COM_NodeOperation.cc b/source/blender/compositor/intern/COM_NodeOperation.cc
index a34fdd64da9..914842c816c 100644
--- a/source/blender/compositor/intern/COM_NodeOperation.cc
+++ b/source/blender/compositor/intern/COM_NodeOperation.cc
@@ -34,7 +34,7 @@ NodeOperation::NodeOperation()
{
canvas_input_index_ = 0;
canvas_ = COM_AREA_NONE;
- this->m_btree = nullptr;
+ m_btree = nullptr;
}
/** Get constant value when operation is constant, otherwise return default_value. */
@@ -179,22 +179,22 @@ void NodeOperation::initExecution()
void NodeOperation::initMutex()
{
- BLI_mutex_init(&this->m_mutex);
+ BLI_mutex_init(&m_mutex);
}
void NodeOperation::lockMutex()
{
- BLI_mutex_lock(&this->m_mutex);
+ BLI_mutex_lock(&m_mutex);
}
void NodeOperation::unlockMutex()
{
- BLI_mutex_unlock(&this->m_mutex);
+ BLI_mutex_unlock(&m_mutex);
}
void NodeOperation::deinitMutex()
{
- BLI_mutex_end(&this->m_mutex);
+ BLI_mutex_end(&m_mutex);
}
void NodeOperation::deinitExecution()