[Bf-blender-cvs] [404758cc207] tmp-static-override-insertion: Cleanup.

Bastien Montagne noreply at git.blender.org
Wed May 2 11:49:38 CEST 2018


Commit: 404758cc2075931d62bcb14e7ef3310314d2a773
Author: Bastien Montagne
Date:   Wed May 2 11:49:27 2018 +0200
Branches: tmp-static-override-insertion
https://developer.blender.org/rB404758cc2075931d62bcb14e7ef3310314d2a773

Cleanup.

===================================================================

M	source/blender/makesrna/intern/rna_object.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c
index 7359b7d7158..2d91ac28c5b 100644
--- a/source/blender/makesrna/intern/rna_object.c
+++ b/source/blender/makesrna/intern/rna_object.c
@@ -1180,24 +1180,6 @@ bool rna_Object_constraints_override_apply(
 
 //	printf("%s: We inserted a constraint...\n", __func__);
 	return true;
-#if 0
-	/* AnimData is a special case, since you cannot edit/replace it, it's either existent or not. */
-	AnimData *adt_dst = RNA_property_pointer_get(ptr_dst, prop_dst).data;
-	AnimData *adt_src = RNA_property_pointer_get(ptr_src, prop_src).data;
-
-	if (adt_dst == NULL && adt_src != NULL) {
-		/* Copy anim data from reference into final local ID. */
-		BKE_animdata_copy_id(NULL, ptr_dst->id.data, ptr_src->id.data, false, true);
-		return true;
-	}
-	else if (adt_dst != NULL && adt_src == NULL) {
-		/* Override has cleared/removed anim data from its reference. */
-		BKE_animdata_free(ptr_dst->id.data, true);
-		return true;
-	}
-
-	return false;
-#endif
 }
 
 static ModifierData *rna_Object_modifier_new(Object *object, bContext *C, ReportList *reports,



More information about the Bf-blender-cvs mailing list