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-01-14 23:24:25 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-01-15 13:09:16 +0300
commit01029c68d293593ccf5019793a5b577b3b522338 (patch)
treedc20ca94733d0ea4cfc4df7da87656e54ab641c0 /source/blender/editors/object/object_collection.c
parentf55a178db06d6c3bf06ae8c33525d6d1c48c9572 (diff)
Cleanup: rename BKE_libblock_delete to BKE_id_delete.
Diffstat (limited to 'source/blender/editors/object/object_collection.c')
-rw-r--r--source/blender/editors/object/object_collection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_collection.c b/source/blender/editors/object/object_collection.c
index 5e1773bf3c2..1a9b69b38ad 100644
--- a/source/blender/editors/object/object_collection.c
+++ b/source/blender/editors/object/object_collection.c
@@ -538,7 +538,7 @@ static int collection_unlink_exec(bContext *C, wmOperator *UNUSED(op))
if (!collection)
return OPERATOR_CANCELLED;
- BKE_libblock_delete(bmain, collection);
+ BKE_id_delete(bmain, collection);
DEG_relations_tag_update(bmain);