elementary: Remove defined but not used function

Patch aee5d501c9 removed the call to this function so
now GCC complains that it is defined but not used, so remove the
function
This commit is contained in:
Christopher Michael 2019-03-05 08:20:15 -05:00
parent 53b5cd1b7a
commit cfc167859a
1 changed files with 0 additions and 13 deletions

View File

@ -4597,19 +4597,6 @@ _key_event_info_new(int event_type, const Ecore_Event_Key *data, Eo *bridge)
return ret;
}
static void
_key_event_info_free(Key_Event_Info *data)
{
EINA_SAFETY_ON_NULL_RETURN(data);
eina_stringshare_del(data->event.keyname);
eina_stringshare_del(data->event.key);
eina_stringshare_del(data->event.string);
eina_stringshare_del(data->event.compose);
free(data);
}
static short
_ecore_modifiers_2_atspi(unsigned int modifiers)
{