elm_web: Fixed warnings when opened popup for <select>

elm_notify and elm_list should be made using Eo based class as a parent.
This commit is contained in:
Ryuan Choi 2013-11-19 00:10:58 +09:00
parent c70405bdde
commit c2604e46a8
1 changed files with 2 additions and 2 deletions

View File

@ -985,11 +985,11 @@ _ewk_view_popup_create_cb(void *data,
(sd->obj, "popup,create", &m2);
if (m2.handled) return;
notify = elm_notify_add(obj);
notify = elm_notify_add(data);
elm_notify_allow_events_set(notify, EINA_FALSE);
elm_notify_align_set(notify, 0.5, 1.0);
list = elm_list_add(obj);
list = elm_list_add(data);
elm_list_select_mode_set(data, ELM_OBJECT_SELECT_MODE_ALWAYS);
elm_scroller_bounce_set(list, EINA_FALSE, EINA_FALSE);
elm_list_mode_set(list, ELM_LIST_EXPAND);