From 4f29aeeff2cfe1dbe0a12910932c48ee453a6de1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 7 Aug 2013 03:44:05 +0000 Subject: code cleanup: some structs were declaring data when only typedef's were intended, make local vars and functions static. --- source/blender/editors/space_file/space_file.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source/blender/editors/space_file/space_file.c') diff --git a/source/blender/editors/space_file/space_file.c b/source/blender/editors/space_file/space_file.c index 8b1df0f0d8f..6f3d0367574 100644 --- a/source/blender/editors/space_file/space_file.c +++ b/source/blender/editors/space_file/space_file.c @@ -500,12 +500,14 @@ static void file_channel_area_draw(const bContext *C, ARegion *ar) ED_region_panels(C, ar, 1, NULL, -1); } -static void file_channel_area_listener(bScreen *UNUSED(sc), ScrArea *UNUSED(sa), ARegion *UNUSED(ar), wmNotifier *wmn) +static void file_channel_area_listener(bScreen *UNUSED(sc), ScrArea *UNUSED(sa), ARegion *UNUSED(ar), wmNotifier *UNUSED(wmn)) { +#if 0 /* context changes */ switch (wmn->category) { } +#endif } /* add handlers, stuff you only do once or on area/region changes */ -- cgit v1.2.3