elementary/genlist - my fault. fixed build error :1

SVN revision: 77219
This commit is contained in:
ChunEon Park 2012-09-29 18:45:15 +00:00
parent 48613d7cd8
commit 5db89a0439
1 changed files with 2 additions and 1 deletions

View File

@ -1139,10 +1139,11 @@ static Item_Cache *
_item_cache_find(Elm_Gen_Item *it)
{
Item_Cache *itc;
Eina_Inlist *l;
Eina_Bool tree = 0;
if (it->item->type & ELM_GENLIST_ITEM_TREE) tree = 1;
EINA_INLIST_FOREACH_SAFE (GL_IT(it)->wsd->item_cache, itc)
EINA_INLIST_FOREACH_SAFE (GL_IT(it)->wsd->item_cache, l, itc)
{
if ((itc->selected) || (itc->disabled) || (itc->expanded))
continue;