Remove extra parentheses on calls to _ecore_mouse_button.
authormekius <mekius@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 17 Jan 2010 19:37:38 +0000 (19:37 +0000)
committermekius <mekius@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 17 Jan 2010 19:37:38 +0000 (19:37 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/ecore@45266 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/ecore_x/xlib/ecore_x_events.c

index 722cd07..39764c8 100644 (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,