From: Subhransu Sekhar Mohanty Date: Tue, 3 Feb 2015 00:50:55 +0000 (+0900) Subject: ector: fixed generic_shape constructor and destructor X-Git-Tag: accepted/tizen/mobile/20150709.001446~108^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0489aa612c1c3430b329c39987024a2a4b90fb6f;p=platform%2Fupstream%2Fefl.git ector: fixed generic_shape constructor and destructor Change-Id: If633782583414887b16b1f49c351003b61d73120 --- diff --git a/src/lib/ector/ector_renderer_shape.c b/src/lib/ector/ector_renderer_shape.c index e171c4c..b45491d 100644 --- a/src/lib/ector/ector_renderer_shape.c +++ b/src/lib/ector/ector_renderer_shape.c @@ -201,11 +201,13 @@ static void _ector_renderer_generic_shape_eo_base_constructor(Eo *obj, Ector_Renderer_Generic_Shape_Data *pd) { + eo_do_super(obj, ECTOR_RENDERER_GENERIC_SHAPE_CLASS, eo_constructor()); } static void _ector_renderer_generic_shape_eo_base_destructor(Eo *obj, Ector_Renderer_Generic_Shape_Data *pd) { + eo_do_super(obj, ECTOR_RENDERER_GENERIC_SHAPE_CLASS, eo_destructor()); } #include "ector_renderer_generic_shape.eo.c"