Evas/evas_object_table - removed white spaces and fixed indentations

SVN revision: 70601
This commit is contained in:
ChunEon Park 2012-05-02 05:55:15 +00:00
parent dbac507018
commit dae52add37
1 changed files with 297 additions and 297 deletions

View File

@ -93,8 +93,8 @@ struct _Evas_Object_Table_Accessor
#define EVAS_OBJECT_TABLE_DATA_GET_OR_RETURN(o, ptr) \
EVAS_OBJECT_TABLE_DATA_GET(o, ptr); \
if (!ptr) \
{ \
if (!ptr) \
{ \
CRIT("no widget data for object %p (%s)", \
o, evas_object_type_get(o)); \
abort(); \
@ -103,13 +103,13 @@ struct _Evas_Object_Table_Accessor
#define EVAS_OBJECT_TABLE_DATA_GET_OR_RETURN_VAL(o, ptr, val) \
EVAS_OBJECT_TABLE_DATA_GET(o, ptr); \
if (!ptr) \
{ \
if (!ptr) \
{ \
CRIT("No widget data for object %p (%s)", \
o, evas_object_type_get(o)); \
abort(); \
return val; \
}
}
static const char EVAS_OBJECT_TABLE_OPTION_KEY[] = "|EvTb";