rimmed pushed a commit to branch eflete-1.18. http://git.enlightenment.org/tools/eflete.git/commit/?id=2e0cc1218352193278e27b2367957a37b56692fe
commit 2e0cc1218352193278e27b2367957a37b56692fe Author: Vitalii Vorobiov <vi.vorob...@samsung.com> Date: Tue Sep 6 18:08:40 2016 +0300 tab_home_common: remove unsused function --- src/bin/ui/tab_home_common.c | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/src/bin/ui/tab_home_common.c b/src/bin/ui/tab_home_common.c index d578d86..f767cfa 100644 --- a/src/bin/ui/tab_home_common.c +++ b/src/bin/ui/tab_home_common.c @@ -92,42 +92,6 @@ entry_path_set(void *data, } void -_group_copy(Project *pro, Eina_List *widgets) -{ - Eina_List *collections, *prefixs, *wl, *sl, *cl, *gl; - Tree_Item_Data *widget, *style; - char *cp_style_name = NULL; - char *prefix = NULL; - char group_name[1024]; - char cp_group_name[1024]; - - collections = edje_file_collection_list(pro->dev); - - EINA_LIST_FOREACH(widgets, wl, widget) - { - EINA_LIST_FOREACH(widget->list, sl, style) - { - if (style->copy) - { - prefixs = widget_prefix_list_get(collections, widget->name, style->name); - EINA_LIST_FOREACH(style->copy, cl, cp_style_name) - { - EINA_LIST_FOREACH(prefixs, gl, prefix) - { - snprintf(group_name, strlen(prefix) + strlen(style->name) + 1, "%s%s", prefix, style->name); - snprintf(cp_group_name, strlen(prefix) + strlen(cp_style_name) + 1, "%s%s", prefix, cp_style_name); - CRIT_ON_FAIL(editor_group_copy(ap.project->global_object, group_name, cp_group_name)); - gm_group_add(ap.project, cp_group_name, true); - } - } - EINA_LIST_FREE(prefixs, prefix) - eina_stringshare_del(prefix); - } - } - } -} - -void _tabs_progress_end(void *data, PM_Project_Result result, Project *project) { Meta_Data_Controls *meta = (Meta_Data_Controls *)data; --