From 75d65aef9c0bb09d77d1c916189a1887876c4773 Mon Sep 17 00:00:00 2001 From: Vorobiov Vitalii Date: Fri, 4 Jul 2014 21:22:27 +0900 Subject: [PATCH] edje_edit: fixing -Wshadow compile warning with edje_edit_access_set Summary: There was -Wshadow compile warning with edje_edit_access_set and one of it's param called access. Changed it's name to avoid such annoying warning Reviewers: Hermet, raster, cedric, seoz Reviewed By: Hermet CC: reutskiy.v.v, cedric Differential Revision: https://phab.enlightenment.org/D1106 --- src/lib/edje/edje_edit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/edje/edje_edit.c b/src/lib/edje/edje_edit.c index 2f8c888..c34e617 100644 --- a/src/lib/edje/edje_edit.c +++ b/src/lib/edje/edje_edit.c @@ -3676,13 +3676,13 @@ edje_edit_part_access_get(Evas_Object *obj, const char *part) } EAPI Eina_Bool -edje_edit_part_access_set(Evas_Object *obj, const char *part, Eina_Bool access) +edje_edit_part_access_set(Evas_Object *obj, const char *part, Eina_Bool access_mode) { GET_RP_OR_RETURN(EINA_FALSE); if (!rp->object) return EINA_FALSE; - rp->part->access = access; + rp->part->access = access_mode; return EINA_TRUE; } -- 2.7.4