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_nla/nla_buttons.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/editors/space_nla') diff --git a/source/blender/editors/space_nla/nla_buttons.c b/source/blender/editors/space_nla/nla_buttons.c index d3bef346705..ce7d537a518 100644 --- a/source/blender/editors/space_nla/nla_buttons.c +++ b/source/blender/editors/space_nla/nla_buttons.c @@ -68,14 +68,14 @@ /* -------------- */ -static void do_nla_region_buttons(bContext *C, void *UNUSED(arg), int event) +static void do_nla_region_buttons(bContext *C, void *UNUSED(arg), int UNUSED(event)) { //Scene *scene = CTX_data_scene(C); - +#if 0 switch (event) { } - +#endif /* default for now */ WM_event_add_notifier(C, NC_OBJECT | ND_TRANSFORM, NULL); WM_event_add_notifier(C, NC_SCENE | ND_TRANSFORM, NULL); -- cgit v1.2.3