selection_manager: Remove unused variable

Summary:
gcc somehow didn't notice this until an unrelated use of the variable
later was removed.  Now it's a warning.
Depends on D6523

Reviewers: devilhorns

Reviewed By: devilhorns

Subscribers: cedric, #committers, zmike

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D6524
This commit is contained in:
Derek Foreman 2018-07-06 10:16:50 -04:00 committed by Chris Michael
parent 0fe553cf06
commit c529418580
1 changed files with 0 additions and 2 deletions

View File

@ -3685,7 +3685,6 @@ _wl_dnd_drop(void *data, int type EINA_UNUSED, void *event)
Sel_Manager_Seat_Selection *seat_sel = data;
Efl_Selection_Manager_Data *pd;
Sel_Manager_Selection *sel;
Ecore_Wl2_Window *win;
Sel_Manager_Dropable *drop;
Eina_List *l;
@ -3706,7 +3705,6 @@ _wl_dnd_drop(void *data, int type EINA_UNUSED, void *event)
evas_object_event_callback_add(sel->request_obj,
EVAS_CALLBACK_DEL, _wl_sel_obj_del2,
sel);
win = _wl_window_get(drop->obj);
ecore_wl2_offer_receive(ev->offer, (char*)drop->last.type);
ecore_event_handler_add(ECORE_WL2_EVENT_OFFER_DATA_READY, _wl_dnd_receive, seat_sel);