From c61ce59162cb5fa995f98ef00d925859610efd89 Mon Sep 17 00:00:00 2001 From: ChunEon Park Date: Thu, 28 Nov 2013 21:24:11 +0900 Subject: [PATCH] evas - code refactoring. put the frequently used compare prior to the other. --- src/lib/evas/include/evas_inline.x | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/evas/include/evas_inline.x b/src/lib/evas/include/evas_inline.x index 0b8e96e79e..c4e102d372 100644 --- a/src/lib/evas/include/evas_inline.x +++ b/src/lib/evas/include/evas_inline.x @@ -4,8 +4,8 @@ static inline Eina_Bool _evas_render_has_map(Evas_Object *eo_obj, Evas_Object_Protected_Data *obj) { - return ((!((obj->func->can_map) && (obj->func->can_map(eo_obj)))) && - ((obj->map->cur.map) && (obj->map->cur.usemap))); + return (((obj->map->cur.map) && (obj->map->cur.usemap)) && + !((obj->func->can_map) && (obj->func->can_map(eo_obj)))); // return ((obj->map->cur.map) && (obj->map->cur.usemap)); }