From bad4854f599cce579c66bbd44ed005b2a40a1552 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 10 Jun 2010 21:51:21 +0200 Subject: Remove unused functions / function arguments --- src/events.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/events.c') diff --git a/src/events.c b/src/events.c index 815bd7e..7caa4d2 100644 --- a/src/events.c +++ b/src/events.c @@ -36,7 +36,6 @@ feh_event_handler *ev_handler[LASTEvent]; static void feh_event_handle_ButtonPress(XEvent * ev); static void feh_event_handle_ButtonRelease(XEvent * ev); static void feh_event_handle_ConfigureNotify(XEvent * ev); -static void feh_event_handle_EnterNotify(XEvent * ev); static void feh_event_handle_LeaveNotify(XEvent * ev); static void feh_event_handle_MotionNotify(XEvent * ev); static void feh_event_handle_ClientMessage(XEvent * ev); @@ -52,7 +51,6 @@ void feh_event_init(void) ev_handler[ButtonPress] = feh_event_handle_ButtonPress; ev_handler[ButtonRelease] = feh_event_handle_ButtonRelease; ev_handler[ConfigureNotify] = feh_event_handle_ConfigureNotify; - ev_handler[EnterNotify] = feh_event_handle_EnterNotify; ev_handler[LeaveNotify] = feh_event_handle_LeaveNotify; ev_handler[MotionNotify] = feh_event_handle_MotionNotify; ev_handler[ClientMessage] = feh_event_handle_ClientMessage; @@ -312,11 +310,6 @@ static void feh_event_handle_ConfigureNotify(XEvent * ev) return; } -static void feh_event_handle_EnterNotify(XEvent * ev) -{ - return; -} - static void feh_event_handle_LeaveNotify(XEvent * ev) { if ((menu_root) && (ev->xcrossing.window == menu_root->win)) { -- cgit v1.2.3