[elm_genlist.c] add elm_genlist_realized_items_update
authorSeunggyun Kim <sgyun.kim@samsung.com>
Mon, 11 Apr 2011 07:36:23 +0000 (16:36 +0900)
committerSeunggyun Kim <sgyun.kim@samsung.com>
Mon, 11 Apr 2011 07:36:23 +0000 (16:36 +0900)
src/lib/elm_genlist.c

index d53c4df..f451ce1 100644 (file)
@@ -6309,3 +6309,16 @@ _item_auto_scroll(void *data)
           }
      }
 }
+
+EAPI void
+elm_genlist_realized_items_update(const Evas_Object *obj)
+{
+   ELM_CHECK_WIDTYPE(obj, widtype);
+
+   Eina_List *list, *l;
+   Elm_Genlist_Item *it;
+
+   list = elm_genlist_realized_items_get(obj);
+   EINA_LIST_FOREACH(list, l, it)
+     elm_genlist_item_update(it);
+}