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:
authorCampbell Barton <ideasman42@gmail.com>2020-04-03 08:46:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-04-03 08:46:34 +0300
commit05dcb007e181c961c0db87c1ce4745ae2d1d0fd0 (patch)
tree2dfdd0e9d01f925495e805020f132d79cf0f3ce7 /source/blender/depsgraph
parent600a627f6e326f4542a876e6e82f771cd3da218f (diff)
Cleanup: use tern 'sync' instead of 'synchronization' for function names
This is a common, unambiguous abbreviation already used throughout the code-base.
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_nodes.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_nodes.cc b/source/blender/depsgraph/intern/builder/deg_builder_nodes.cc
index 128b2d3a9bf..eee1a9d2fc8 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_nodes.cc
+++ b/source/blender/depsgraph/intern/builder/deg_builder_nodes.cc
@@ -652,7 +652,7 @@ void DepsgraphNodeBuilder::build_object(int base_index,
add_operation_node(&object->id,
NodeType::SYNCHRONIZATION,
OperationCode::SYNCHRONIZE_TO_ORIGINAL,
- function_bind(BKE_object_synchronize_to_original, _1, object_cow));
+ function_bind(BKE_object_sync_to_original, _1, object_cow));
}
void DepsgraphNodeBuilder::build_object_flags(int base_index,