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:
authorAntonio Vazquez <blendergit@gmail.com>2017-03-01 13:41:23 +0300
committerAntonio Vazquez <blendergit@gmail.com>2017-03-01 13:41:23 +0300
commit3626521346d477900f9140ef039bbfc25fa8321d (patch)
tree0b781d7ff2baa6b5e6d26cf7c139a687883bc8ff /source/blender/editors/animation
parente14279381538982782050e0abbd55103cf03f407 (diff)
Base Refactor Tasks: Fix some legacy bases for dopesheet
Diffstat (limited to 'source/blender/editors/animation')
-rw-r--r--source/blender/editors/animation/anim_filter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/animation/anim_filter.c b/source/blender/editors/animation/anim_filter.c
index f3ac6b7bc23..5b4d217b97a 100644
--- a/source/blender/editors/animation/anim_filter.c
+++ b/source/blender/editors/animation/anim_filter.c
@@ -604,7 +604,7 @@ static bAnimListElem *make_new_animlistelem(void *data, short datatype, ID *owne
}
case ANIMTYPE_OBJECT:
{
- BaseLegacy *base = (BaseLegacy *)data;
+ Base *base = (Base *)data;
Object *ob = base->object;
ale->flag = ob->flag;
@@ -2577,7 +2577,7 @@ static size_t animdata_filter_ds_obanim(bAnimContext *ac, ListBase *anim_data, b
}
/* get animation channels from object2 */
-static size_t animdata_filter_dopesheet_ob(bAnimContext *ac, ListBase *anim_data, bDopeSheet *ads, BaseLegacy *base, int filter_mode)
+static size_t animdata_filter_dopesheet_ob(bAnimContext *ac, ListBase *anim_data, bDopeSheet *ads, Base *base, int filter_mode)
{
ListBase tmp_data = {NULL, NULL};
Object *ob = base->object;