[Bf-blender-cvs] [4c769f0] depsgraph_refactor: Fix for recent cleanup name change in master (rB3216e4b202195ed88455d1b43b348a2cf8f40d77)

Lukas Tönne noreply at git.blender.org
Sun Apr 13 10:51:25 CEST 2014


Commit: 4c769f0223d9dd5058d376132d8a8f71b4d65972
Author: Lukas Tönne
Date:   Sun Apr 13 10:44:57 2014 +0200
https://developer.blender.org/rB4c769f0223d9dd5058d376132d8a8f71b4d65972

Fix for recent cleanup name change in master (rB3216e4b202195ed88455d1b43b348a2cf8f40d77)

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

M	source/blender/depsgraph/intern/depsgraph_build_relations.cpp

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

diff --git a/source/blender/depsgraph/intern/depsgraph_build_relations.cpp b/source/blender/depsgraph/intern/depsgraph_build_relations.cpp
index 0dd110d..486f921 100644
--- a/source/blender/depsgraph/intern/depsgraph_build_relations.cpp
+++ b/source/blender/depsgraph/intern/depsgraph_build_relations.cpp
@@ -282,7 +282,7 @@ void DepsgraphRelationBuilder::build_constraints(Scene *scene, IDPtr id, const s
 	
 	/* add dependencies for each constraint in turn */
 	for (bConstraint *con = (bConstraint *)constraints->first; con; con = con->next) {
-		bConstraintTypeInfo *cti = BKE_constraint_get_typeinfo(con);
+		bConstraintTypeInfo *cti = BKE_constraint_typeinfo_get(con);
 		/* invalid constraint type... */
 		if (cti == NULL)
 			continue;




More information about the Bf-blender-cvs mailing list