ryuan pushed a commit to branch master.

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

commit d60da4e70218724c0c3f7da8b48c39966a49b527
Author: Ryuan Choi <ryuan.c...@gmail.com>
Date:   Mon Apr 14 14:00:33 2014 +0900

    elm_web2: Fix build break with latest EFL
    
    Followes Eo2 changes.
---
 src/lib/elm_web2.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/elm_web2.c b/src/lib/elm_web2.c
index a70b9f2..7630c8b 100644
--- a/src/lib/elm_web2.c
+++ b/src/lib/elm_web2.c
@@ -308,7 +308,7 @@ _elm_web_eo_base_constructor(Eo *obj, Elm_Web_Data *sd)
    eo_do_super(obj, MY_CLASS, eo_constructor());
    eo_do(obj,
          evas_obj_type_set(MY_CLASS_NAME_LEGACY),
-         evas_obj_smart_callbacks_descriptions_set(_elm_web_smart_callbacks, 
NULL));
+         evas_obj_smart_callbacks_descriptions_set(_elm_web_smart_callbacks));
 }
 
 EOLIAN static Evas_Object*
@@ -427,7 +427,7 @@ elm_web_uri_set(Evas_Object *obj,
 {
    ELM_WEB_CHECK(obj) EINA_FALSE;
    Eina_Bool ret = EINA_FALSE;
-   eo_do(obj, elm_obj_web_url_set(url, &ret));
+   eo_do(obj, ret = elm_obj_web_url_set(url));
    return ret;
 }
 

-- 


Reply via email to