elm elm_widget.c: Fixed indentation.

SVN revision: 63361
This commit is contained in:
Daniel Juyung Seo 2011-09-13 16:59:25 +00:00
parent 764921e689
commit 95d188941d
1 changed files with 24 additions and 24 deletions

View File

@ -3400,30 +3400,30 @@ static void
_smart_init(void) _smart_init(void)
{ {
if (_e_smart) return; if (_e_smart) return;
{ {
static const Evas_Smart_Class sc = static const Evas_Smart_Class sc =
{ {
SMART_NAME, SMART_NAME,
EVAS_SMART_CLASS_VERSION, EVAS_SMART_CLASS_VERSION,
_smart_add, _smart_add,
_smart_del, _smart_del,
_smart_move, _smart_move,
_smart_resize, _smart_resize,
_smart_show, _smart_show,
_smart_hide, _smart_hide,
_smart_color_set, _smart_color_set,
_smart_clip_set, _smart_clip_set,
_smart_clip_unset, _smart_clip_unset,
_smart_calculate, _smart_calculate,
NULL, NULL,
NULL, NULL,
NULL, NULL,
NULL, NULL,
NULL, NULL,
NULL NULL
}; };
_e_smart = evas_smart_class_new(&sc); _e_smart = evas_smart_class_new(&sc);
} }
} }
/* happy debug functions */ /* happy debug functions */