e/access e_mod_main.c: Removed debug printf and trailing whitespaces.

SVN revision: 76019
This commit is contained in:
Daniel Juyung Seo 2012-09-03 21:32:50 +00:00
parent 311af65b10
commit 8d269d907c
1 changed files with 4 additions and 6 deletions

View File

@ -348,21 +348,19 @@ _mouse_wheel(Cover *cov __UNUSED__, Ecore_Event_Mouse_Wheel *ev __UNUSED__)
if (ev->z == -1) // up if (ev->z == -1) // up
{ {
printf("wheel up\n");
#if ECORE_VERSION_MAJOR >= 1 #if ECORE_VERSION_MAJOR >= 1
# if ECORE_VERSION_MINOR >= 8 # if ECORE_VERSION_MINOR >= 8
ecore_x_e_illume_access_action_up_send(bd->client.win); ecore_x_e_illume_access_action_up_send(bd->client.win);
# endif # endif
#endif #endif
} }
else if (ev->z == 1) // down else if (ev->z == 1) // down
{ {
printf("wheel down\n");
#if ECORE_VERSION_MAJOR >= 1 #if ECORE_VERSION_MAJOR >= 1
# if ECORE_VERSION_MINOR >= 8 # if ECORE_VERSION_MINOR >= 8
ecore_x_e_illume_access_action_down_send(bd->client.win); ecore_x_e_illume_access_action_down_send(bd->client.win);
# endif # endif
#endif #endif
} }
} }