diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2016-07-19 18:25:00 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2016-07-19 19:03:49 +0900 |
commit | ffa005ea3de26b4219f32c285cb1665bb1366163 (patch) | |
tree | b9b939b624b159dd80f851bb4cae332a32ee79c0 /src/bin/widgets_list_2_grouped.c | |
parent | 95d6a6cd9a390af5f603879cd56f030ef6842289 (diff) |
Switch back to eo_del.
This was a brutal eo_unref -> eo_del. Should be good enough.
Diffstat (limited to 'src/bin/widgets_list_2_grouped.c')
-rw-r--r-- | src/bin/widgets_list_2_grouped.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/widgets_list_2_grouped.c b/src/bin/widgets_list_2_grouped.c index 1521e77..ec65e20 100644 --- a/src/bin/widgets_list_2_grouped.c +++ b/src/bin/widgets_list_2_grouped.c | |||
@@ -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_unref(o_images[i]); | 96 | eo_del(o_images[i]); |
97 | eo_unref(o_texts[i]); | 97 | eo_del(o_texts[i]); |
98 | } | 98 | } |
99 | } | 99 | } |
100 | 100 | ||