From 37d000659426678cf3b54f2836e6f5077da4fcb6 Mon Sep 17 00:00:00 2001 From: sebastid Date: Thu, 21 Sep 2006 20:05:44 +0000 Subject: [PATCH] paranthesis are nice. SVN revision: 26005 --- src/bin/e_gadcon.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_gadcon.c b/src/bin/e_gadcon.c index 063ba6c26..dbcaa7a7b 100644 --- a/src/bin/e_gadcon.c +++ b/src/bin/e_gadcon.c @@ -132,8 +132,8 @@ struct _E_Layout_Item_Container __con_state = E_LAYOUT_ITEM_CONTAINER_STATE_SIZE_MAX_END_DEC #define LC_OVERLAP(__lc, __lc2) \ - ( __lc2->pos >= __lc->pos && (__lc2->pos < (__lc->pos + __lc->size)) || \ - __lc->pos >= __lc2->pos && (__lc->pos < (__lc2->pos + __lc2->size))) + ((((__lc2)->pos >= (__lc)->pos) && ((__lc2)->pos < ((__lc)->pos + (__lc)->size))) || \ + (((__lc)->pos >= (__lc2)->pos) && ((__lc)->pos < ((__lc2)->pos + (__lc2)->size)))) #define E_LAYOUT_ITEM_CONTAINER_SIZE_CHANGE_BY(__lc, __bi, __increase) \ if (__lc->sd->horizontal) \