summaryrefslogtreecommitdiff
path: root/src/lib/elm_widget_glview.h
diff options
context:
space:
mode:
authorDaniel Juyung Seo <juyung.seo@samsung.com>2013-12-26 13:03:55 +0900
committerDaniel Juyung Seo <juyung.seo@samsung.com>2013-12-26 13:03:55 +0900
commit64da1da7b0c30ee862cd5cdb9886b5000363088a (patch)
treea7b0628163d464519c66d77b3a2015186cef1036 /src/lib/elm_widget_glview.h
parentd8c7def3965ae0af8a756fdde1d4c120cae85502 (diff)
downloadelementary-64da1da7b0c30ee862cd5cdb9886b5000363088a.tar.gz
elm: Unified eina critical manro to CRI.
Being annoyed by different types of eina critical macros - CRI, CRIT, CRITICAL -, I concluded to unify them to one. Discussed on IRC and finally, CRI was chosen to meet the consistency with other macros - ERR, WRN, INF, DBG - in terms of the number of characters. If there is any missing bits, please let me know.
Diffstat (limited to 'src/lib/elm_widget_glview.h')
-rw-r--r--src/lib/elm_widget_glview.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/elm_widget_glview.h b/src/lib/elm_widget_glview.h
index e310d841f..5f5ba5e70 100644
--- a/src/lib/elm_widget_glview.h
+++ b/src/lib/elm_widget_glview.h
@@ -53,7 +53,7 @@ struct _Elm_Glview_Smart_Data
ELM_GLVIEW_DATA_GET(o, ptr); \
if (!ptr) \
{ \
- CRITICAL("No widget data for object %p (%s)", \
+ CRI("No widget data for object %p (%s)", \
o, evas_object_type_get(o)); \
return; \
}
@@ -62,7 +62,7 @@ struct _Elm_Glview_Smart_Data
ELM_GLVIEW_DATA_GET(o, ptr); \
if (!ptr) \
{ \
- CRITICAL("No widget data for object %p (%s)", \
+ CRI("No widget data for object %p (%s)", \
o, evas_object_type_get(o)); \
return val; \
}