From 6a686b0bfbdee935fbd6f584f15985b1a8cd4406 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Mon, 4 Feb 2019 16:22:28 +0100 Subject: Cleanup: BKE_library: rename id_copy to BKE_id_copy. Time to follow conventions for that one as well. --- source/blender/makesrna/intern/rna_ID.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/makesrna/intern') diff --git a/source/blender/makesrna/intern/rna_ID.c b/source/blender/makesrna/intern/rna_ID.c index 9560be60585..718e3b5ac09 100644 --- a/source/blender/makesrna/intern/rna_ID.c +++ b/source/blender/makesrna/intern/rna_ID.c @@ -363,7 +363,7 @@ static ID *rna_ID_copy(ID *id, Main *bmain) { ID *newid; - if (id_copy(bmain, id, &newid)) { + if (BKE_id_copy(bmain, id, &newid)) { if (newid != NULL) { id_us_min(newid); } -- cgit v1.2.3