edje/style: remove dead code.

Summary: leftover from last refactoring.

Reviewers: Hermet, ali.alzyod

Reviewed By: Hermet

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D9763
This commit is contained in:
subhransu mohanty 2019-08-28 14:07:04 +09:00 committed by Hermet Park
parent 4b2403d80c
commit d7d9ed856f
1 changed files with 0 additions and 18 deletions

View File

@ -247,24 +247,6 @@ _edje_textblock_style_search(Edje *ed, const char *style)
return eina_hash_find(ed->file->style_hash, style);
}
static inline void
_edje_textblock_style_member_add(Edje *ed, Edje_Style *stl)
{
Edje_Style_Tag *tag;
Eina_List *l;
if (!stl) return;
EINA_LIST_FOREACH(stl->tags, l, tag)
{
if (tag->text_class)
efl_observable_observer_add(_edje_text_class_member, tag->text_class, ed->obj);
}
/* Newly added text_class member should be updated
according to the latest text_class's status. */
_edje_textblock_style_update(ed, stl, EINA_TRUE);
}
static inline void
_edje_textblock_style_observer_add(Edje_Style *stl, Efl_Observer* observer)
{