Revert "efl_ui_pager: implement unpack_at function"

This reverts commit 913a5bff66.

The commit is reverted because the commit implements features during
feature freeze period before release.

913a5bff66 will be restored after release.
This commit is contained in:
Jaehyun Cho 2019-04-02 16:39:40 +09:00
parent b28f1e034b
commit a10e1bc597
1 changed files with 5 additions and 12 deletions

View File

@ -853,19 +853,12 @@ _efl_ui_pager_efl_pack_unpack(Eo *obj,
}
EOLIAN static Efl_Gfx_Entity *
_efl_ui_pager_efl_pack_linear_pack_unpack_at(Eo *obj,
Efl_Ui_Pager_Data *pd,
int index)
_efl_ui_pager_efl_pack_linear_pack_unpack_at(Eo *obj EINA_UNUSED,
Efl_Ui_Pager_Data *pd EINA_UNUSED,
int index EINA_UNUSED)
{
if (!EINA_DBL_EQ(pd->curr.pos, 0.0)) return NULL;
if ((index >= pd->cnt) || (index < 0)) return NULL;
Efl_Gfx_Entity *subobj = eina_list_nth(pd->content_list, index);
_unpack(obj, pd, subobj, index);
return subobj;
ERR("Soon to be implemented");
return NULL;
}