Revert "edje: Avoid string duplication when possible."

This reverts commit 8941514b46.

found that this breaks e's systray icon layout... :(
This commit is contained in:
Carsten Haitzler 2020-07-17 10:35:52 +01:00
parent 903e2832ba
commit d6f210b3a0
1 changed files with 8 additions and 14 deletions

View File

@ -5601,8 +5601,6 @@ _edje_real_part_text_text_source_description_get(Edje_Real_Part *ep, Edje_Real_P
Edje_Real_Part *
_edje_real_part_recursive_get(Edje **ed, const char *part)
{
if (strchr(part, EDJE_PART_PATH_SEPARATOR))
{
Edje_Real_Part *rp;
char **path;
@ -5614,13 +5612,9 @@ _edje_real_part_recursive_get(Edje **ed, const char *part)
free(*path);
free(path);
return rp;
}
return _edje_real_part_get(*ed, part);
}
Evas_Object *
_edje_children_get(Edje_Real_Part *rp, const char *partid)
{