From 903dbde84a45c5376f2d4ac88ac74bacc1a1bf2f Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Thu, 22 Sep 2016 11:44:59 +0200 Subject: [PATCH] modules: emotion: fix event name after EFL Canvas Video convert In commit 7b90e1147442d6a8023422400bffd77e2815fe0b the event name changed but this module was not updated. Luckily we are building it on Jenkins or it would have gone unnoticed for a long time. --- src/modules/emotion/libvlc/emotion_libvlc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/emotion/libvlc/emotion_libvlc.c b/src/modules/emotion/libvlc/emotion_libvlc.c index f994e4d8d9..31b47c9e5d 100644 --- a/src/modules/emotion/libvlc/emotion_libvlc.c +++ b/src/modules/emotion/libvlc/emotion_libvlc.c @@ -280,7 +280,7 @@ evas_resize_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED, evas_object_image_size_get(ev->evas_obj, &w, &h); _emotion_frame_resize(ev->obj, w, h, w / (double) h); - efl_event_callback_call(ev->obj, EMOTION_OBJECT_EVENT_FRAME_DECODE, NULL); + efl_event_callback_call(ev->obj, EFL_CANVAS_VIDEO_EVENT_FRAME_DECODE, NULL); } /* Fetch all libvlc tracks. */