code cleanup: some structs were declaring data when only typedef's were intended, make local vars and functions static.

This commit is contained in:
Campbell Barton
2013-08-07 03:44:05 +00:00
parent f97a4bd254
commit 4f29aeeff2
10 changed files with 16 additions and 14 deletions

View File

@@ -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 */