From 6802ae750d2cf0aeb620a7cc636b0d2a03d64887 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 11 Feb 2014 22:29:34 -0500 Subject: [PATCH] send smart object to comp effect end cb --- src/bin/e_comp_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 06810d905..a05858457 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -3299,7 +3299,7 @@ _e_comp_object_effect_end_cb(void *data, Evas_Object *obj, const char *emission, end_cb = evas_object_data_get(obj, "_e_comp.end_cb"); if (!end_cb) return; end_data = evas_object_data_get(obj, "_e_comp.end_data"); - end_cb(end_data, obj, emission, source); + end_cb(end_data, cw->smart_obj, emission, source); }