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-02-04 18:22:28 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-02-05 11:49:50 +0300
commit6a686b0bfbdee935fbd6f584f15985b1a8cd4406 (patch)
treec8dc0e7c91070e075feb91d605a4438a6a448846 /source/blender/makesrna/intern/rna_ID.c
parent7636e9785dc11fc9f11f89ba055f414e6efe43fa (diff)
Cleanup: BKE_library: rename id_copy to BKE_id_copy.
Time to follow conventions for that one as well.
Diffstat (limited to 'source/blender/makesrna/intern/rna_ID.c')
-rw-r--r--source/blender/makesrna/intern/rna_ID.c2
1 files changed, 1 insertions, 1 deletions
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);
}