rimmed pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=017712896e6ba9cc80e77591cbaee9fdd9cc8fdf
commit 017712896e6ba9cc80e77591cbaee9fdd9cc8fdf Author: Vitalii Vorobiov <[email protected]> Date: Wed Mar 30 18:43:58 2016 +0300 live_naviframe: add forgotten static mods --- src/bin/ui/live_view/elementary/live_naviframe.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/ui/live_view/elementary/live_naviframe.c b/src/bin/ui/live_view/elementary/live_naviframe.c index 4579085..ef4d056 100644 --- a/src/bin/ui/live_view/elementary/live_naviframe.c +++ b/src/bin/ui/live_view/elementary/live_naviframe.c @@ -21,7 +21,7 @@ static const char *item_style_name = NULL; -void +static void _pop_page_cb(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__) { Evas_Object *nf = data; @@ -31,7 +31,7 @@ _pop_page_cb(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED_ elm_naviframe_item_pop(nf); } -void +static void _next_page_cb(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__) { Evas_Object *nf = (Evas_Object *)data, *bt; @@ -45,7 +45,7 @@ _next_page_cb(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED elm_naviframe_item_push(nf, _("Page Next"), bt, NULL, NULL, item_style_name); } -void +static void _prev_page_cb(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__) { Evas_Object *nf = (Evas_Object *)data, *bt; --
