edje: rename variable to have a more miningfull name.

SVN revision: 67528
This commit is contained in:
Cedric BAIL 2012-01-25 10:11:02 +00:00
parent 0379b5c2da
commit 762126ef49
1 changed files with 3 additions and 2 deletions

View File

@ -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;
}