elementary: Remove set but unused variable

This variable looks like it may be used in the future, but for now
just causes additional compiler warnings so comment it out for now.

@fix

Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
This commit is contained in:
Chris Michael 2016-06-07 13:37:53 -04:00
parent 0a93ff051f
commit d0826aacb7
1 changed files with 3 additions and 3 deletions

View File

@ -340,11 +340,11 @@ elm_code_widget_selection_text_get(Evas_Object *widget)
}
static void
_selection_loss_cb(void *data, Elm_Sel_Type selection EINA_UNUSED)
_selection_loss_cb(void *data EINA_UNUSED, Elm_Sel_Type selection EINA_UNUSED)
{
Elm_Code_Widget *widget;
/* Elm_Code_Widget *widget; */
widget = (Elm_Code_Widget *)data;
/* widget = (Elm_Code_Widget *)data; */
// TODO we need to know whih selection we are clearing!
// elm_code_widget_selection_clear(widget);
}