From b0f87a17460578382cabb8447934cb045eee223a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 21 Dec 2010 14:49:34 +0000 Subject: rename addlisttolist() to BLI_movelisttolist() name was misleading because the list items were removed from the source list. (no functional changes) --- source/blender/editors/animation/anim_channels_edit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/animation/anim_channels_edit.c') diff --git a/source/blender/editors/animation/anim_channels_edit.c b/source/blender/editors/animation/anim_channels_edit.c index 04cb5091f33..4c022e38d26 100644 --- a/source/blender/editors/animation/anim_channels_edit.c +++ b/source/blender/editors/animation/anim_channels_edit.c @@ -887,7 +887,7 @@ static void join_groups_action_temp (bAction *act) /* add list of channels to action's channels */ tempGroup= agrp->channels; - addlisttolist(&act->curves, &agrp->channels); + BLI_movelisttolist(&act->curves, &agrp->channels); agrp->channels= tempGroup; /* clear moved flag */ -- cgit v1.2.3