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_file_icons_2_same.c | |
parent | ffa005ea3de26b4219f32c285cb1665bb1366163 (diff) |
fix eo break.
Its api are still unstable. make it work again.
Diffstat (limited to 'src/bin/widgets_file_icons_2_same.c')
-rw-r--r-- | src/bin/widgets_file_icons_2_same.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/widgets_file_icons_2_same.c b/src/bin/widgets_file_icons_2_same.c index 83dfeac..1a42604 100644 --- a/src/bin/widgets_file_icons_2_same.c +++ b/src/bin/widgets_file_icons_2_same.c | |||
@@ -31,7 +31,7 @@ static void _setup(void) | |||
31 | Evas_Object *o; | 31 | Evas_Object *o; |
32 | for (i = 0; i < NUM; i++) | 32 | for (i = 0; i < NUM; i++) |
33 | { | 33 | { |
34 | o = eo_add(EFL_CANVAS_IMAGE_CLASS, evas); | 34 | o = efl_add(EFL_CANVAS_IMAGE_CLASS, evas); |
35 | o_images[i] = o; | 35 | o_images[i] = o; |
36 | efl_file_set(o, build_path(icons[i % 1]), NULL); | 36 | efl_file_set(o, build_path(icons[i % 1]), NULL); |
37 | efl_gfx_fill_set(o, 0, 0, ICON_SIZE, ICON_SIZE); | 37 | efl_gfx_fill_set(o, 0, 0, ICON_SIZE, ICON_SIZE); |
@@ -54,8 +54,8 @@ static void _cleanup(void) | |||
54 | int i; | 54 | int i; |
55 | for (i = 0; i < NUM; i++) | 55 | for (i = 0; i < NUM; i++) |
56 | { | 56 | { |
57 | eo_del(o_images[i]); | 57 | efl_del(o_images[i]); |
58 | eo_del(o_texts[i]); | 58 | efl_del(o_texts[i]); |
59 | } | 59 | } |
60 | } | 60 | } |
61 | 61 | ||