Elm Examples: Fix undefined function references.

They were renamed by 599bb616ec

Signed-off-by: Jean-Philippe Andre <jp.andre@samsung.com>
This commit is contained in:
Guilherme Iscaro 2017-08-16 11:12:47 -03:00 committed by Jean-Philippe Andre
parent c7ca7221ab
commit 0309981eba
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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);