summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <marcel-hollerbach@t-online.de>2019-01-14 21:23:02 +0000
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2019-01-15 17:37:42 +0100
commitea9ff9f547b54255d36973da8e8ba378c5ad2684 (patch)
treee47d7c935645b367cf264a5319eda98c1e8b28ca
parentae65c64b8d52c3b3d032eb29474b750b7e5781cb (diff)
downloadefl-ea9ff9f547b54255d36973da8e8ba378c5ad2684.tar.gz
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 <xavierartigas@yahoo.es> Reviewed-by: Cedric BAIL <cedric.bail@free.fr> Differential Revision: https://phab.enlightenment.org/D7601
-rw-r--r--src/lib/evas/canvas/efl_canvas_animation.eo2
1 files changed, 1 insertions, 1 deletions
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;