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:
authorCampbell Barton <ideasman42@gmail.com>2019-02-16 02:16:16 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-16 02:23:40 +0300
commit419911b1d19ceeb87cd1c0a7b78f0133bee4a6cd (patch)
tree0c57d32c290988de6a39df0819828b43b626f7c7 /source/blender/editors/animation/anim_filter.c
parent374cbdc63bde61d590340b824039f6aa892c79e7 (diff)
DNA: rename SpaceIpo -> SpaceGraph
Diffstat (limited to 'source/blender/editors/animation/anim_filter.c')
-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 7c6656b9104..ca9205cdd47 100644
--- a/source/blender/editors/animation/anim_filter.c
+++ b/source/blender/editors/animation/anim_filter.c
@@ -268,7 +268,7 @@ static bool actedit_get_context(bAnimContext *ac, SpaceAction *saction)
/* ----------- Private Stuff - Graph Editor ------------- */
/* Get data being edited in Graph Editor (depending on current 'mode') */
-static bool graphedit_get_context(bAnimContext *ac, SpaceIpo *sipo)
+static bool graphedit_get_context(bAnimContext *ac, SpaceGraph *sipo)
{
/* init dopesheet data if non-existent (i.e. for old files) */
if (sipo->ads == NULL) {
@@ -359,7 +359,7 @@ bool ANIM_animdata_context_getdata(bAnimContext *ac)
}
case SPACE_IPO:
{
- SpaceIpo *sipo = (SpaceIpo *)sl;
+ SpaceGraph *sipo = (SpaceGraph *)sl;
ok = graphedit_get_context(ac, sipo);
break;
}