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:
authorBastien Montagne <bastien@blender.org>2020-05-18 19:43:11 +0300
committerBastien Montagne <bastien@blender.org>2020-05-18 19:43:11 +0300
commitae97a7ac1026f1fe40365a2692abee7ef3ea06d2 (patch)
treece67f24cfa3e915668ebffc9d44a2353f32c7d01 /source/blender/blenkernel/intern/lib_query.c
parent38a8d3aff1a8362530497299da351683a330ab59 (diff)
Refactor: Move action foreach_id to new IDTypeInfo structure.
Diffstat (limited to 'source/blender/blenkernel/intern/lib_query.c')
-rw-r--r--source/blender/blenkernel/intern/lib_query.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/source/blender/blenkernel/intern/lib_query.c b/source/blender/blenkernel/intern/lib_query.c
index 228620d5d34..ec9225258a0 100644
--- a/source/blender/blenkernel/intern/lib_query.c
+++ b/source/blender/blenkernel/intern/lib_query.c
@@ -982,11 +982,7 @@ static void library_foreach_ID_link(Main *bmain,
}
case ID_AC: {
- bAction *act = (bAction *)id;
-
- LISTBASE_FOREACH (TimeMarker *, marker, &act->markers) {
- CALLBACK_INVOKE(marker->camera, IDWALK_CB_NOP);
- }
+ BLI_assert(0);
break;
}