edje_cc: remove unnecessary internal function

Summary:
This internal function was made for checking non-existence of
Edje Part when handling insert_before/after attributes.
However, checking is implemented in different way and this function
is not used anywhere.

Reviewers: cedric

Subscribers: jpeg

Differential Revision: https://phab.enlightenment.org/D3790

Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
This commit is contained in:
Jee-Yong Um 2016-03-15 11:31:30 -07:00 committed by Cedric Bail
parent 4c2628b03e
commit afb49ec096
1 changed files with 0 additions and 26 deletions

View File

@ -4123,32 +4123,6 @@ using_file(const char *filename, const char type)
}
}
Eina_Bool
needed_part_exists(Edje_Part_Collection *pc, const char *name)
{
Eina_Bool found;
unsigned int i;
found = EINA_FALSE;
for (i = 0; i < pc->parts_count; i++)
{
if (!strcmp(pc->parts[i]->name, name))
{
found = EINA_TRUE;
break;
}
}
if (!found)
{
ERR("Unable to find part name \"%s\" needed in group \"%s\".",
name, pc->part);
exit(-1);
}
return found;
}
void
color_tree_root_free(void)
{