diff options
author | Christopher Michael <cpmichael1@comcast.net> | 2012-10-28 07:54:39 +0000 |
---|---|---|
committer | Christopher Michael <cpmichael1@comcast.net> | 2012-10-28 07:54:39 +0000 |
commit | 8c98ebf173359ccb9d3e1d1b7c32331456788956 (patch) | |
tree | 535e7438723d615fa547db0751454bbcda65ea74 /legacy | |
parent | f56d253073298a73b60fbcc5db650703f004aa43 (diff) |
Evas: Add missing parens.
Signed-off-by: Christopher Michael <devilhorns@revolution.(none)>
SVN revision: 78569
Diffstat (limited to 'legacy')
-rw-r--r-- | legacy/evas/src/lib/canvas/evas_events.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/legacy/evas/src/lib/canvas/evas_events.c b/legacy/evas/src/lib/canvas/evas_events.c index 70c586a..8c238da 100644 --- a/legacy/evas/src/lib/canvas/evas_events.c +++ b/legacy/evas/src/lib/canvas/evas_events.c | |||
@@ -739,11 +739,11 @@ _evas_event_source_multi_move_events(Evas_Object *eo_obj, Evas *eo_e, Evas_Event | |||
739 | EINA_LIST_FOREACH(copy, l, eo_child) | 739 | EINA_LIST_FOREACH(copy, l, eo_child) |
740 | { | 740 | { |
741 | child = eo_data_get(eo_child, EVAS_OBJ_CLASS); | 741 | child = eo_data_get(eo_child, EVAS_OBJ_CLASS); |
742 | if ((evas_object_clippers_is_visible(eo_child, child) || | 742 | if (((evas_object_clippers_is_visible(eo_child, child)) || |
743 | (child->mouse_grabbed) && | 743 | ((child->mouse_grabbed) && |
744 | (!evas_event_passes_through(eo_child, child)) && | 744 | (!evas_event_passes_through(eo_child, child)) && |
745 | (!evas_event_freezes_through(eo_child, child)) && | 745 | (!evas_event_freezes_through(eo_child, child)) && |
746 | (!child->clip.clipees))) | 746 | (!child->clip.clipees)))) |
747 | { | 747 | { |
748 | ev->cur.canvas.x = point_x; | 748 | ev->cur.canvas.x = point_x; |
749 | ev->cur.canvas.y = point_y; | 749 | ev->cur.canvas.y = point_y; |