Fix the wrong parameter in multibuttonentry.

This commit is contained in:
Jaehwan Kim 2013-07-23 18:48:09 +09:00
parent 8e02c9541c
commit 5e7742d4c3
1 changed files with 2 additions and 2 deletions

View File

@ -904,7 +904,7 @@ _mouse_clicked_signal_cb(void *data,
_view_update(sd);
if (elm_widget_focus_get(data) && sd->editable)
if (elm_widget_focus_get(obj) && sd->editable)
{
elm_entry_input_panel_show(sd->entry);
elm_object_focus_set(sd->entry, EINA_TRUE);
@ -1087,7 +1087,7 @@ _callbacks_register(Evas_Object *obj)
evas_object_event_callback_add
(wd->resize_obj, EVAS_CALLBACK_KEY_UP,
_layout_key_up_cb, sd);
_layout_key_up_cb, obj);
evas_object_event_callback_add
(sd->box, EVAS_CALLBACK_RESIZE, _box_resize_cb, obj);