elm_web: Fixed build warning with ewebkit

This commit is contained in:
Ryuan Choi 2014-04-23 01:27:47 +09:00
parent b173ed7c85
commit a4a140bd64
1 changed files with 2 additions and 2 deletions

View File

@ -198,7 +198,8 @@ EOLIAN static Eina_Bool
_elm_web_elm_widget_event(Eo *obj, Elm_Web_Data *sd, Evas_Object *src, Evas_Callback_Type type, void *event_info)
{
Evas_Event_Key_Down *ev = event_info;
(void) src;
(void)sd;
(void)src;
#ifdef HAVE_ELEMENTARY_WEB
if (type != EVAS_CALLBACK_KEY_DOWN) return EINA_FALSE;
@ -211,7 +212,6 @@ _elm_web_elm_widget_event(Eo *obj, Elm_Web_Data *sd, Evas_Object *src, Evas_Call
return EINA_TRUE;
#else
(void)obj;
(void)sd;
(void)type;
(void)ev;
#endif