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:
authorBastien Montagne <montagne29@wanadoo.fr>2017-07-08 13:20:54 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2017-07-08 13:20:54 +0300
commitfe46bb8b0e01ea90e04ddacd578c937e3cf5214e (patch)
tree50c9be6c62b7f7232bd595e6acf1a5b3fceb9f41 /source/blender/blenkernel/intern/object.c
parent17ceb807dd4814f90fc856e72f87a4d32834331b (diff)
Rename new `BKE_<foo>_copy_ex` to `BKE_<foo>_copy_data`.
Those are not actually copying the ID, only its internal subdata (and other ID-specific handling). Generic processing common to all ID copying is done by `BKE_id_copy_ex()`!
Diffstat (limited to 'source/blender/blenkernel/intern/object.c')
-rw-r--r--source/blender/blenkernel/intern/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/object.c b/source/blender/blenkernel/intern/object.c
index 4599b3dd456..f2b7a809f45 100644
--- a/source/blender/blenkernel/intern/object.c
+++ b/source/blender/blenkernel/intern/object.c
@@ -1108,7 +1108,7 @@ void BKE_object_transform_copy(Object *ob_tar, const Object *ob_src)
*
* \param flag Copying options (see BKE_library.h's LIB_ID_COPY_... flags for more).
*/
-void BKE_object_copy_ex(Main *UNUSED(bmain), Object *ob_dst, const Object *ob_src, const int flag)
+void BKE_object_copy_data(Main *UNUSED(bmain), Object *ob_dst, const Object *ob_src, const int flag)
{
ModifierData *md;