From 8938c2b5db705d9c80a2d17b9dad83b2ec8a5ef7 Mon Sep 17 00:00:00 2001 From: Brandon Schaefer Date: Tue, 25 Mar 2014 15:24:43 -0700 Subject: [PATCH] Ignore unused mir event functions, need headers in Ubuntu 14.04 to use them. --- src/video/mir/SDL_mirevents.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/video/mir/SDL_mirevents.c b/src/video/mir/SDL_mirevents.c index f2d3ef382..940d5b796 100644 --- a/src/video/mir/SDL_mirevents.c +++ b/src/video/mir/SDL_mirevents.c @@ -116,6 +116,13 @@ HandleMouseButton(SDL_Window* sdl_window, Uint8 state, MirMotionButton button_st SDL_SendMouseButton(sdl_window, 0, state, sdl_button); } +static void +HandleMouseMotion(SDL_Window* sdl_window, int x, int y) +{ + SDL_SendMouseMotion(sdl_window, 0, 0, x, y); +} + +#if 0 /* !!! FIXME: needs a newer set of dev headers than Ubuntu 13.10 is shipping atm. */ static void HandleTouchPress(int device_id, int source_id, SDL_bool down, float x, float y, float pressure) { @@ -128,12 +135,6 @@ HandleTouchMotion(int device_id, int source_id, float x, float y, float pressure SDL_SendTouchMotion(device_id, source_id, x, y, pressure); } -static void -HandleMouseMotion(SDL_Window* sdl_window, int x, int y) -{ - SDL_SendMouseMotion(sdl_window, 0, 0, x, y); -} - static void HandleMouseScroll(SDL_Window* sdl_window, int hscroll, int vscroll) { @@ -181,6 +182,7 @@ HandleTouchEvent(MirMotionEvent const motion, int cord_index, SDL_Window* sdl_wi break; } } +#endif static void HandleMouseEvent(MirMotionEvent const motion, int cord_index, SDL_Window* sdl_window)