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>2019-03-06 13:42:19 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-03-06 17:19:29 +0300
commit702e7bfd5c27fe5d11c54e402e94c5bee9a1194e (patch)
tree11b5c6cabc84d928d86284a8fe633ac39dd8ebba /source/blender/blenkernel/intern/collection.c
parent4dbf5e3a81466724f7eefc0978ae247571d1f4bd (diff)
Cleanup: remove no-op BKE_collection_copy_full().
That one was an empty place-holder, BKE_collection_duplicate() is now doing that. And its call from full scene copying is not needed currently, 'deep copy' in that case is handled in editor's `ED_scene_add()`. Note that at some point, we might want to move that logic into BKE, but for now let's keep thing as they are - working.
Diffstat (limited to 'source/blender/blenkernel/intern/collection.c')
-rw-r--r--source/blender/blenkernel/intern/collection.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/blender/blenkernel/intern/collection.c b/source/blender/blenkernel/intern/collection.c
index d351f112c8a..3776c6bd8ca 100644
--- a/source/blender/blenkernel/intern/collection.c
+++ b/source/blender/blenkernel/intern/collection.c
@@ -339,11 +339,6 @@ Collection *BKE_collection_copy_master(Main *bmain, Collection *collection, cons
return collection_dst;
}
-void BKE_collection_copy_full(Main *UNUSED(bmain), Collection *UNUSED(collection))
-{
- // TODO: implement full scene copy
-}
-
void BKE_collection_make_local(Main *bmain, Collection *collection, const bool lib_local)
{
BKE_id_make_local_generic(bmain, &collection->id, true, lib_local);