remove duplicated code

Summary:
this patch removes duplicated code.
the event handler of "focus in/out" already added above it.

Reviewers: raster, zmike

CC: cedric

Differential Revision: https://phab.enlightenment.org/D816
This commit is contained in:
Seunghun Lee 2014-05-02 06:48:27 -04:00 committed by Mike Blumenkrantz
parent c70e3eb531
commit 1d9a94c7e9
1 changed files with 0 additions and 3 deletions

View File

@ -1892,9 +1892,6 @@ _e_comp_object_constructor(Eo *obj, E_Comp_Object *cw, E_Client *ec)
evas_object_intercept_hide_callback_add(obj, _e_comp_intercept_hide, cw);
evas_object_intercept_focus_set_callback_add(obj, _e_comp_intercept_focus, cw);
evas_object_event_callback_add(obj, EVAS_CALLBACK_FOCUS_IN, _e_comp_object_smart_focus_in, cw);
evas_object_event_callback_add(obj, EVAS_CALLBACK_FOCUS_OUT, _e_comp_object_smart_focus_out, cw);
cw->comp = ec->comp;
evas_object_data_set(obj, "E_Client", ec);
cw->ec = ec;