jpeg pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=edafd4ec34629d8200b04e4fda074ac0f5dadf92

commit edafd4ec34629d8200b04e4fda074ac0f5dadf92
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Wed Mar 16 19:36:19 2016 +0900

    Evas: Improve EVAS_OBJECT_LEGACY_API a bit more
    
    This now calls EINA_SAFETY_ERROR which makes it easy to then
    break inside _eina_legacy_error.
---
 src/lib/evas/include/evas_private.h | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/lib/evas/include/evas_private.h 
b/src/lib/evas/include/evas_private.h
index ceee4a7..48b0b0b 100644
--- a/src/lib/evas/include/evas_private.h
+++ b/src/lib/evas/include/evas_private.h
@@ -579,7 +579,8 @@ MAGIC_CHECK_FAILED(o, t, m)
    do { Evas_Object_Protected_Data *_o = eo_data_scope_get(_eo, 
EVAS_OBJECT_CLASS); \
       if (EINA_UNLIKELY(!_o)) return __VA_ARGS__; \
       if (EINA_UNLIKELY(!_o->legacy)) { \
-         ERR("Calling legacy function '%s' on EO object '%s' is not 
permitted!", __FUNCTION__, eo_class_name_get(_o->object)); \
+         char buf[1024]; snprintf(buf, sizeof(buf), "Calling legacy API on EO 
object '%s' is not permitted!", eo_class_name_get(_o->object)); \
+         EINA_SAFETY_ERROR(buf); \
          return __VA_ARGS__; \
    } } while (0)
 #else
@@ -587,7 +588,8 @@ MAGIC_CHECK_FAILED(o, t, m)
    do { Evas_Object_Protected_Data *_o = eo_data_scope_get(_eo, 
EVAS_OBJECT_CLASS); \
       if (EINA_UNLIKELY(!_o)) return __VA_ARGS__; \
       if (EINA_UNLIKELY(!_o->legacy)) { \
-         ERR("Calling legacy function '%s' on EO object '%s' is not 
permitted!", __FUNCTION__, eo_class_name_get(_o->object)); \
+         char buf[1024]; snprintf(buf, sizeof(buf), "Calling legacy API on EO 
object '%s' is not permitted!", eo_class_name_get(_o->object)); \
+         EINA_SAFETY_ERROR(buf); \
    } } while (0)
 #endif
 

-- 


Reply via email to