From: cedric Date: Wed, 25 Jan 2012 10:11:02 +0000 (+0000) Subject: edje: rename variable to have a more miningfull name. X-Git-Tag: submit/trunk/20120815.180907~258 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b1145b9c073fb474b43e113873876e444a271405;p=profile%2Fivi%2Fedje.git edje: rename variable to have a more miningfull name. git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@67528 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/bin/edje_cc_handlers.c b/src/bin/edje_cc_handlers.c index 9abd39f..0dd9a76 100644 --- a/src/bin/edje_cc_handlers.c +++ b/src/bin/edje_cc_handlers.c @@ -2170,7 +2170,8 @@ st_collections_group_name(void) Edje_Part_Collection *pc; Eina_List *l; Code *cd; - unsigned int i = 0; + unsigned int id = 0; + unsigned int i; pc = eina_list_nth(edje_collections, older->id); cd = eina_list_nth(codes, older->id); @@ -2201,7 +2202,7 @@ st_collections_group_name(void) { older = eina_hash_find(edje_file->collection, pc->part); - pc->id = i++; + pc->id = id++; if (older) older->id = pc->id; else if (pc->part == current_pc->part) current_de->id = pc->id; }