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:
Diffstat (limited to 'source/blender/makesrna/intern/rna_rna.c')
-rw-r--r--source/blender/makesrna/intern/rna_rna.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/source/blender/makesrna/intern/rna_rna.c b/source/blender/makesrna/intern/rna_rna.c
index 4b9c1e0067b..44191b72e36 100644
--- a/source/blender/makesrna/intern/rna_rna.c
+++ b/source/blender/makesrna/intern/rna_rna.c
@@ -199,14 +199,10 @@ void rna_builtin_properties_begin(CollectionPropertyIterator *iter, PointerRNA *
newptr.type= &RNA_Struct;
newptr.data= ptr->type;
- if(ptr->type->flag & STRUCT_ID) {
- newptr.id.type= ptr->type;
+ if(ptr->type->flag & STRUCT_ID)
newptr.id.data= ptr->data;
- }
- else {
- newptr.id.type= NULL;
+ else
newptr.id.data= NULL;
- }
iter->parent= newptr;