diff options
author | Hermet Park <hermet@hermet.pe.kr> | 2016-08-22 19:00:56 +0900 |
---|---|---|
committer | Hermet Park <hermet@hermet.pe.kr> | 2016-08-22 19:00:56 +0900 |
commit | 05a29c965a81ba942fef1f7262e9c64a91ffa2f4 (patch) | |
tree | 97abbc80d64280d84a9f71da6f24cd56a31ae247 /src/bin/widgets_list_2_grouped.c | |
parent | ffa005ea3de26b4219f32c285cb1665bb1366163 (diff) |
fix eo break.
Its api are still unstable. make it work again.
Diffstat (limited to 'src/bin/widgets_list_2_grouped.c')
-rw-r--r-- | src/bin/widgets_list_2_grouped.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/widgets_list_2_grouped.c b/src/bin/widgets_list_2_grouped.c index ec65e20..151172b 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) | |||
62 | Evas_Object *o; | 62 | Evas_Object *o; |
63 | for (i = 0; i < NUM; i++) | 63 | for (i = 0; i < NUM; i++) |
64 | { | 64 | { |
65 | o = eo_add(EFL_CANVAS_IMAGE_CLASS, evas); | 65 | o = efl_add(EFL_CANVAS_IMAGE_CLASS, evas); |
66 | o_images[i] = o; | 66 | o_images[i] = o; |
67 | efl_image_border_set(o, 2, 2, 2, 2); | 67 | efl_image_border_set(o, 2, 2, 2, 2); |
68 | efl_file_set(o, build_path("pan.png"), NULL); | 68 | efl_file_set(o, build_path("pan.png"), NULL); |
@@ -93,8 +93,8 @@ static void _cleanup(void) | |||
93 | int i; | 93 | int i; |
94 | for (i = 0; i < NUM; i++) | 94 | for (i = 0; i < NUM; i++) |
95 | { | 95 | { |
96 | eo_del(o_images[i]); | 96 | efl_del(o_images[i]); |
97 | eo_del(o_texts[i]); | 97 | efl_del(o_texts[i]); |
98 | } | 98 | } |
99 | } | 99 | } |
100 | 100 | ||