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:
authorNathan Letwory <nathan@letworyinteractive.com>2008-12-12 23:59:59 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-12-12 23:59:59 +0300
commitf3dc0ba876d37f7c85c3fc1408b24f962a88642e (patch)
tree32ea092da9ea891e026e93e3ffa68011e1d0db69 /source/blender
parente8effb2d0fc7fbc88fe212e968cde208424b03d5 (diff)
* spacetype time -> spacetype ipo
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/space_ipo/space_ipo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/space_ipo/space_ipo.c b/source/blender/editors/space_ipo/space_ipo.c
index 811d29dba14..9b119beef63 100644
--- a/source/blender/editors/space_ipo/space_ipo.c
+++ b/source/blender/editors/space_ipo/space_ipo.c
@@ -238,7 +238,7 @@ static void ipo_main_area_listener(ARegion *ar, wmNotifier *wmn)
/* only called once, from space/spacetypes.c */
void ED_spacetype_ipo(void)
{
- SpaceType *st= MEM_callocN(sizeof(SpaceType), "spacetype time");
+ SpaceType *st= MEM_callocN(sizeof(SpaceType), "spacetype ipo");
ARegionType *art;
st->spaceid= SPACE_IPO;
@@ -251,7 +251,7 @@ void ED_spacetype_ipo(void)
st->keymap= ipo_keymap;
/* regions: main window */
- art= MEM_callocN(sizeof(ARegionType), "spacetype time region");
+ art= MEM_callocN(sizeof(ARegionType), "spacetype ipo region");
art->regionid = RGN_TYPE_WINDOW;
art->init= ipo_main_area_init;
art->draw= ipo_main_area_draw;
@@ -260,7 +260,7 @@ void ED_spacetype_ipo(void)
BLI_addhead(&st->regiontypes, art);
/* regions: header */
- art= MEM_callocN(sizeof(ARegionType), "spacetype time region");
+ art= MEM_callocN(sizeof(ARegionType), "spacetype ipo region");
art->regionid = RGN_TYPE_HEADER;
art->minsizey= HEADERY;
art->keymapflag= ED_KEYMAP_UI|ED_KEYMAP_VIEW2D;
@@ -271,7 +271,7 @@ void ED_spacetype_ipo(void)
BLI_addhead(&st->regiontypes, art);
/* regions: channels */
- art= MEM_callocN(sizeof(ARegionType), "spacetype time region");
+ art= MEM_callocN(sizeof(ARegionType), "spacetype ipo region");
art->regionid = RGN_TYPE_CHANNELS;
art->minsizex= 80;
art->keymapflag= ED_KEYMAP_UI|ED_KEYMAP_VIEW2D;