stanluk pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=01ef11eb56f73af38ba8a3e7f6a5fc2b31a7f53d

commit 01ef11eb56f73af38ba8a3e7f6a5fc2b31a7f53d
Author: Lukasz Stanislawski <l.stanisl...@samsung.com>
Date:   Thu Sep 3 10:28:40 2015 +0200

    elm_web2: fix build break & warnings after migration to eo callbacks.
---
 src/lib/elm_web2.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/src/lib/elm_web2.c b/src/lib/elm_web2.c
index c37bcd8..bfd116c 100644
--- a/src/lib/elm_web2.c
+++ b/src/lib/elm_web2.c
@@ -78,7 +78,7 @@ _view_smart_window_close(Ewk_View_Smart_Data *sd)
 
    ELM_WEB_CHECK(obj);
 
-   eo_do(obj, eo_event_callback_call(ELM_WEB_EVENT_WINDOWS_CLOSE_REQUEST, 
NULL);
+   eo_do(obj, eo_event_callback_call(ELM_WEB_EVENT_WINDOWS_CLOSE_REQUEST, 
NULL));
 }
 
 static void
@@ -106,13 +106,15 @@ _popup_item_selected(void *data,
    evas_object_del(evas_object_data_get(obj, "_notify"));
 }
 
-static void
+static Eina_Bool
 _popup_dismiss_cb(void *data,
-                  Evas_Object *obj,
+                  Eo *obj,
+                  const Eo_Event_Description *desc EINA_UNUSED,
                   void *event_info EINA_UNUSED)
 {
    ewk_popup_menu_close(data);
    evas_object_del(obj);
+   return EINA_TRUE;
 }
 
 static Eina_Bool

-- 


Reply via email to