From acf7130b52aea6574db1905f7ed18f0221d0dc62 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Tue, 3 Jun 2014 14:21:17 +0100 Subject: Update code according to the recent eolian generation changes. --- src/bin/widgets_list_2_grouped.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/bin/widgets_list_2_grouped.c') diff --git a/src/bin/widgets_list_2_grouped.c b/src/bin/widgets_list_2_grouped.c index 11905c1..a99a4fc 100644 --- a/src/bin/widgets_list_2_grouped.c +++ b/src/bin/widgets_list_2_grouped.c @@ -62,7 +62,7 @@ static void _setup(void) Evas_Object *o; for (i = 0; i < NUM; i++) { - o = eo_add(EVAS_OBJ_IMAGE_CLASS, evas); + o = eo_add(EVAS_IMAGE_CLASS, evas); o_images[i] = o; eo_do(o, evas_obj_image_filled_set(1), evas_obj_image_border_set(2, 2, 2, 2), @@ -70,7 +70,7 @@ static void _setup(void) evas_obj_size_set(win_w, ICON_SIZE), evas_obj_visibility_set(EINA_TRUE)); - o = eo_add(EVAS_OBJ_TEXT_CLASS, evas); + o = eo_add(EVAS_TEXT_CLASS, evas); o_texts[i] = o; eo_do(o, evas_obj_text_font_set("Vera-Bold", 10), evas_obj_text_text_set(labels[i % 26]), -- cgit v1.2.1