whoops forgot this was a list of icons, not icon infos. unbreak!

SVN revision: 74654
This commit is contained in:
Mike Blumenkrantz 2012-07-31 13:18:24 +00:00
parent 89cdac7771
commit 506b9ad8e6
1 changed files with 6 additions and 1 deletions

View File

@ -1357,8 +1357,13 @@ e_fm2_config_get(Evas_Object *obj)
EAPI Eina_List *
e_fm2_selected_list_get(Evas_Object *obj)
{
Eina_List *list = NULL, *l;
E_Fm2_Icon *ic;
EFM_SMART_CHECK(NULL);
return eina_list_clone(sd->selected_icons);
EINA_LIST_FOREACH(sd->selected_icons, l, ic)
list = eina_list_append(list, &(ic->info));
return list;
}
EAPI Eina_List *