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/blenkernel/intern/library_query.c')
-rw-r--r--source/blender/blenkernel/intern/library_query.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/library_query.c b/source/blender/blenkernel/intern/library_query.c
index 4787dbb0701..c6e53dfb7db 100644
--- a/source/blender/blenkernel/intern/library_query.c
+++ b/source/blender/blenkernel/intern/library_query.c
@@ -230,7 +230,7 @@ void BKE_library_foreach_ID_link(ID *id, LibraryIDLinkCallback callback, void *u
pose_channel = pose_channel->next)
{
CALLBACK_INVOKE(pose_channel->custom, IDWALK_NOP);
- BKE_id_loop_constraints(&pose_channel->constraints,
+ BKE_constraints_id_loop(&pose_channel->constraints,
library_foreach_constraintObjectLooper,
&data);
}
@@ -239,7 +239,7 @@ void BKE_library_foreach_ID_link(ID *id, LibraryIDLinkCallback callback, void *u
modifiers_foreachIDLink(object,
library_foreach_modifiersForeachIDLink,
&data);
- BKE_id_loop_constraints(&object->constraints,
+ BKE_constraints_id_loop(&object->constraints,
library_foreach_constraintObjectLooper,
&data);
break;