Remove extra parentheses on calls to _ecore_mouse_button.

SVN revision: 45266
This commit is contained in:
Nicholas Hughart 2010-01-17 19:37:38 +00:00
parent 04edba1123
commit 719f50417f
1 changed files with 2 additions and 2 deletions

View File

@ -482,7 +482,7 @@ _ecore_x_event_handle_any_event(XEvent *xevent)
case XI_ButtonPress:
_ecore_mouse_button
(ECORE_EVENT_MOUSE_BUTTON_DOWN,
(evd->time,
evd->time,
0, // state
0, // button
evd->event_x, evd->event_y,
@ -503,7 +503,7 @@ _ecore_x_event_handle_any_event(XEvent *xevent)
case XI_ButtonRelease:
_ecore_mouse_button
(ECORE_EVENT_MOUSE_BUTTON_UP,
(evd->time,
evd->time,
0, // state
0, // button
evd->event_x, evd->event_y,