Hello Everyone,
Currently the "make examples" is broken. I created a patch to fix the
problem. If possible, someone could review my patch and apply it?

Thanks
From 88560dd1214991fa1a8c8fb1e493d248fd4c361b Mon Sep 17 00:00:00 2001
From: Guilherme Iscaro <isc...@profusion.mobi>
Date: Wed, 16 Aug 2017 11:12:47 -0300
Subject: [PATCH] Elm Examples: Fix undefined function references.

They were renamed by 599bb616ec5
---
 src/examples/elementary/filemvc.c              | 2 +-
 src/examples/elementary/layout_model_connect.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/examples/elementary/filemvc.c b/src/examples/elementary/filemvc.c
index 15b5f18165..f09657bafc 100644
--- a/src/examples/elementary/filemvc.c
+++ b/src/examples/elementary/filemvc.c
@@ -161,7 +161,7 @@ elm_main(int argc EINA_UNUSED, char **argv EINA_UNUSED)
    elm_view_list_model_set(priv.treeview, priv.treemodel);
    _widget_init(genlist);
    elm_object_part_content_set(panes, "left", genlist);
-   efl_ui_panes_content_left_size_set(panes, 0.3);
+   elm_panes_content_left_size_set(panes, 0.3);
 
    vpanes = elm_panes_add(win);
    _widget_init(vpanes);
diff --git a/src/examples/elementary/layout_model_connect.c b/src/examples/elementary/layout_model_connect.c
index 09aabd0cf1..b856692246 100644
--- a/src/examples/elementary/layout_model_connect.c
+++ b/src/examples/elementary/layout_model_connect.c
@@ -119,7 +119,7 @@ elm_main(int argc EINA_UNUSED, char **argv EINA_UNUSED)
    elm_view_list_model_set(priv->fileview, priv->model);
    _widget_init(genlist);
    elm_object_part_content_set(panes, "left", genlist);
-   efl_ui_panes_content_left_size_set(panes, 0.3);
+   elm_panes_content_left_size_set(panes, 0.3);
    efl_event_callback_add(priv->fileview, ELM_VIEW_LIST_EVENT_MODEL_SELECTED, _list_selected_cb, priv);
 
    bxr = elm_box_add(win);
-- 
2.14.1

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to