From 8d269d907cd64679b139d1a604a7b7060beb15d8 Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Mon, 3 Sep 2012 21:32:50 +0000 Subject: [PATCH] e/access e_mod_main.c: Removed debug printf and trailing whitespaces. SVN revision: 76019 --- src/modules/access/e_mod_main.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/modules/access/e_mod_main.c b/src/modules/access/e_mod_main.c index 3177837a9..2bc68dc76 100644 --- a/src/modules/access/e_mod_main.c +++ b/src/modules/access/e_mod_main.c @@ -348,21 +348,19 @@ _mouse_wheel(Cover *cov __UNUSED__, Ecore_Event_Mouse_Wheel *ev __UNUSED__) if (ev->z == -1) // up { - printf("wheel up\n"); #if ECORE_VERSION_MAJOR >= 1 # if ECORE_VERSION_MINOR >= 8 ecore_x_e_illume_access_action_up_send(bd->client.win); -# endif -#endif +# endif +#endif } else if (ev->z == 1) // down { - printf("wheel down\n"); #if ECORE_VERSION_MAJOR >= 1 # if ECORE_VERSION_MINOR >= 8 ecore_x_e_illume_access_action_down_send(bd->client.win); -# endif -#endif +# endif +#endif } }