summaryrefslogtreecommitdiff
path: root/src/modules/ethumb
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2016-02-29 10:18:40 +0000
committerTom Hacohen <tom@stosb.com>2016-02-29 11:33:27 +0000
commite71e6561eeb5f0a10e5b08e44d2977e58bfd682b (patch)
tree72b41e7f6740360d265bbda572da5eb236c2e957 /src/modules/ethumb
parent56ea371dfb064c28906c7d8344b0c0e03c1d3d4d (diff)
downloadefl-e71e6561eeb5f0a10e5b08e44d2977e58bfd682b.tar.gz
Eo callbacks: Migrate all of the EFL to the new event cb signatures.
Diffstat (limited to 'src/modules/ethumb')
-rw-r--r--src/modules/ethumb/emotion/emotion.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/modules/ethumb/emotion/emotion.c b/src/modules/ethumb/emotion/emotion.c
index ee2cdfedc0..792b0dba6c 100644
--- a/src/modules/ethumb/emotion/emotion.c
+++ b/src/modules/ethumb/emotion/emotion.c
@@ -81,8 +81,7 @@ _resize_movie(struct _emotion_plugin *_plugin)
}
static Eina_Bool
-_frame_decode_cb(void *data,
- Eo *obj EINA_UNUSED, const Eo_Event_Description *desc EINA_UNUSED, void *event_info EINA_UNUSED)
+_frame_decode_cb(void *data, const Eo_Event *event EINA_UNUSED)
{
struct _emotion_plugin *_plugin = data;
@@ -95,8 +94,7 @@ _frame_decode_cb(void *data,
}
static Eina_Bool
-_frame_resized_cb(void *data,
- Eo *obj EINA_UNUSED, const Eo_Event_Description *desc EINA_UNUSED, void *event_info EINA_UNUSED)
+_frame_resized_cb(void *data, const Eo_Event *event EINA_UNUSED)
{
_resize_movie(data);
@@ -104,8 +102,7 @@ _frame_resized_cb(void *data,
}
static Eina_Bool
-_video_stopped_cb(void *data,
- Eo *obj EINA_UNUSED, const Eo_Event_Description *desc EINA_UNUSED, void *event_info EINA_UNUSED)
+_video_stopped_cb(void *data, const Eo_Event *event EINA_UNUSED)
{
struct _emotion_plugin *_plugin = data;