cedric pushed a commit to branch master.

commit 694e8a7d090dfd2fb1e1b97ea4e5816a27d67622
Author: Cedric Bail <[email protected]>
Date:   Tue Jun 18 13:32:00 2013 +0900

    evas: fix clang compilation.
---
 src/lib/evas/canvas/evas_object_box.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/evas/canvas/evas_object_box.c 
b/src/lib/evas/canvas/evas_object_box.c
index 23624ed..7b5c654 100644
--- a/src/lib/evas/canvas/evas_object_box.c
+++ b/src/lib/evas/canvas/evas_object_box.c
@@ -120,7 +120,7 @@ static Eina_Bool
 _on_child_resize(void *data, Eo *o EINA_UNUSED, const Eo_Event_Description 
*desc EINA_UNUSED, void *einfo EINA_UNUSED)
 {
    Evas_Object *box = data;
-   EVAS_OBJECT_BOX_DATA_GET_OR_RETURN(box, priv);
+   EVAS_OBJECT_BOX_DATA_GET_OR_RETURN_VAL(box, priv, EO_CALLBACK_CONTINUE);
    if (!priv->layouting) evas_object_smart_changed(box);
 
    return EO_CALLBACK_CONTINUE;
@@ -144,7 +144,7 @@ static Eina_Bool
 _on_child_hints_changed(void *data, Eo *o EINA_UNUSED, const 
Eo_Event_Description *desc EINA_UNUSED, void *einfo EINA_UNUSED)
 {
    Evas_Object *box = data;
-   EVAS_OBJECT_BOX_DATA_GET_OR_RETURN(box, priv);
+   EVAS_OBJECT_BOX_DATA_GET_OR_RETURN_VAL(box, priv, EO_CALLBACK_CONTINUE);
 // XXX: this breaks box repacking in elementary. widgets DEPEND on being able
 // to change their hints evenr WHILE being laid out. so comment this out.
 //   if (!priv->layouting)

-- 

------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev

Reply via email to