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:
authorTon Roosendaal <ton@blender.org>2008-12-12 21:47:12 +0300
committerTon Roosendaal <ton@blender.org>2008-12-12 21:47:12 +0300
commita46ddac1a979b2b94cf3a46c4b6a738841b025dc (patch)
tree420cc36b4cfc61b6d614f79e267cbcf17e46a6f0 /source/blender/editors/space_time
parentfaf7965b3ca383d5b9504b644dff2ea40a55eb26 (diff)
2.5
- Added rudimentary support for Ipo window (Joshua can check on view2d issues for this? :) - removed ED_area.h, added ED_space_api.h
Diffstat (limited to 'source/blender/editors/space_time')
-rw-r--r--source/blender/editors/space_time/space_time.c6
-rw-r--r--source/blender/editors/space_time/time_header.c1
2 files changed, 1 insertions, 6 deletions
diff --git a/source/blender/editors/space_time/space_time.c b/source/blender/editors/space_time/space_time.c
index d6faefa856b..7c6267f8071 100644
--- a/source/blender/editors/space_time/space_time.c
+++ b/source/blender/editors/space_time/space_time.c
@@ -41,7 +41,7 @@
#include "BKE_global.h"
#include "BKE_screen.h"
-#include "ED_area.h"
+#include "ED_space_api.h"
#include "ED_screen.h"
#include "ED_util.h"
@@ -194,9 +194,6 @@ static void time_header_area_draw(const bContext *C, ARegion *ar)
UI_view2d_view_restore(C);
}
-static void time_header_area_free(ARegion *ar)
-{
-}
/* ******************** default callbacks for time space ***************** */
@@ -306,7 +303,6 @@ void ED_spacetype_time(void)
art->init= time_header_area_init;
art->draw= time_header_area_draw;
- art->free= time_header_area_free;
BLI_addhead(&st->regiontypes, art);
BKE_spacetype_register(st);
diff --git a/source/blender/editors/space_time/time_header.c b/source/blender/editors/space_time/time_header.c
index 308e49377ad..8898fb296db 100644
--- a/source/blender/editors/space_time/time_header.c
+++ b/source/blender/editors/space_time/time_header.c
@@ -41,7 +41,6 @@
#include "BKE_global.h"
#include "BKE_screen.h"
-#include "ED_area.h"
#include "ED_screen.h"
#include "ED_util.h"