From 2902a31d9f9dc074053e773484aa9d82b5860bca Mon Sep 17 00:00:00 2001 From: Yeongjong Lee Date: Fri, 21 Feb 2020 14:38:30 +0900 Subject: [PATCH] elm_genlist: add content_loop_get method for genlist eo Fixes `-Wunused-function`. @tizen_fix Change-Id: I09f47346794e3d0d751b00fa1a48fb86ec061c0a --- src/lib/elementary/elm_genlist_eo.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/elementary/elm_genlist_eo.c b/src/lib/elementary/elm_genlist_eo.c index 79ebe21..eb3cf54 100644 --- a/src/lib/elementary/elm_genlist_eo.c +++ b/src/lib/elementary/elm_genlist_eo.c @@ -506,6 +506,8 @@ Eina_Bool _elm_genlist_elm_interface_scrollable_item_loop_enabled_get(const Eo * //TIZEN_ONLY(20191209): Genlist looping implementation void _elm_genlist_elm_interface_scrollable_content_loop_set(Eo *obj, Elm_Genlist_Data *pd, Eina_Bool loop_h, Eina_Bool loop_v); + +void _elm_genlist_elm_interface_scrollable_content_loop_get(Eo *obj, Elm_Genlist_Data *sd, Eina_Bool *loop_h, Eina_Bool *loop_v); // void _elm_genlist_elm_interface_scrollable_bounce_allow_set(Eo *obj, Elm_Genlist_Data *pd, Eina_Bool horiz, Eina_Bool vert); @@ -650,6 +652,8 @@ _elm_genlist_class_initializer(Efl_Class *klass) EFL_OBJECT_OP_FUNC(elm_interface_scrollable_item_loop_enabled_get, _elm_genlist_elm_interface_scrollable_item_loop_enabled_get), //TIZEN_ONLY(20191209): Genlist looping implementation EFL_OBJECT_OP_FUNC(elm_interface_scrollable_content_loop_set, _elm_genlist_elm_interface_scrollable_content_loop_set), + EFL_OBJECT_OP_FUNC(elm_interface_scrollable_content_loop_get, _elm_genlist_elm_interface_scrollable_content_loop_get), +// // EFL_OBJECT_OP_FUNC(elm_interface_scrollable_bounce_allow_set, _elm_genlist_elm_interface_scrollable_bounce_allow_set), EFL_OBJECT_OP_FUNC(elm_interface_scrollable_bounce_allow_get, _elm_genlist_elm_interface_scrollable_bounce_allow_get), -- 2.7.4