elementary: Fix erroneous usage of EINA_UNUSED

'data' parameter is actually used in this function, so remove mis-use
of EINA_UNUSED in function

@fix

Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
This commit is contained in:
Chris Michael 2016-06-29 11:48:53 -04:00
parent 8fb9c91d8f
commit f024234090
1 changed files with 1 additions and 2 deletions

View File

@ -411,7 +411,7 @@ _dnd_types_to_format(const char **types, int ntypes)
}
static Eina_Bool
_drag_cancel_animate(void *data EINA_UNUSED, double pos)
_drag_cancel_animate(void *data, double pos)
{ /* Animation to "move back" drag-window */
if (pos >= 0.99)
{
@ -3701,7 +3701,6 @@ _wl_dnd_end(void *data EINA_UNUSED, int type EINA_UNUSED, void *event)
/* No animation drop was committed */
evas_object_del(dragwin);
}
dragwin = NULL; /* if not freed here, free in end of anim */
}