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:
authorDalai Felinto <dfelinto@gmail.com>2017-05-26 16:32:07 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-05-26 18:44:00 +0300
commit65a042b27324a7345ce415cf77c75e3220ada92d (patch)
treefbffcd1395d3a66e571927f3072340a25f3e0e26 /source/blender/makesrna
parent0ab9b943a2aae617d36a4010bb60d3cbe8bd5d57 (diff)
Rename BKE_layer_collection_active > BKE_layer_collection_get_active
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 95a2f86e080..962bf8cc997 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -2856,7 +2856,7 @@ static void rna_LayerCollections_active_collection_index_range(
static PointerRNA rna_LayerCollections_active_collection_get(PointerRNA *ptr)
{
SceneLayer *sl = (SceneLayer *)ptr->data;
- LayerCollection *lc = BKE_layer_collection_active(sl);
+ LayerCollection *lc = BKE_layer_collection_get_active(sl);
return rna_pointer_inherit_refine(ptr, &RNA_LayerCollection, lc);
}