From ea9ff9f547b54255d36973da8e8ba378c5ad2684 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Mon, 14 Jan 2019 21:23:02 +0000 Subject: [PATCH] evas: make efl_canvas_animation abstract it seems that this class does not have a meaning when created just like this. Other classes using it are even abstract, which means, this class should also be abstract. This is done in order to support that a abstract class should only contain abstract ref T7240 Reviewed-by: Xavi Artigas Reviewed-by: Cedric BAIL Differential Revision: https://phab.enlightenment.org/D7601 --- src/lib/evas/canvas/efl_canvas_animation.eo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/evas/canvas/efl_canvas_animation.eo b/src/lib/evas/canvas/efl_canvas_animation.eo index 8040ac9dbe..63f882c09b 100644 --- a/src/lib/evas/canvas/efl_canvas_animation.eo +++ b/src/lib/evas/canvas/efl_canvas_animation.eo @@ -1,6 +1,6 @@ import efl_canvas_animation_types; -class Efl.Canvas.Animation (Efl.Object, Efl.Playable) +abstract Efl.Canvas.Animation (Efl.Object, Efl.Playable) { [[Efl animation class]] eo_prefix: efl_animation;