diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2016-10-07 16:25:49 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2016-10-12 11:25:55 +0900 |
commit | 52969ccd9beec884c330736b15e2776d4faf5154 (patch) | |
tree | f176612250a66e7491eb314d33153b771f9ef46b /src/lib/emotion/efl_canvas_video.eo | |
parent | 39949b022d72c8a867f51ea2cadf04c0e8f1368e (diff) |
evas: Remove method group_color_set
Widgets should simply override efl_gfx_color_set and call
super all the way up to evas object.
Legacy compatibility with call interceptors and early call
abortion (eg. delete_me or obj->layer == NULL) are implemented
with an internal call. See the previous commit introducing the
API.
Diffstat (limited to 'src/lib/emotion/efl_canvas_video.eo')
-rw-r--r-- | src/lib/emotion/efl_canvas_video.eo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/emotion/efl_canvas_video.eo b/src/lib/emotion/efl_canvas_video.eo index c6e797ae0c..64b920c1d0 100644 --- a/src/lib/emotion/efl_canvas_video.eo +++ b/src/lib/emotion/efl_canvas_video.eo | |||
@@ -51,13 +51,13 @@ class Efl.Canvas.Video (Efl.Canvas.Group, Efl.File, Efl.Player, Efl.Image, Efl.I | |||
51 | } | 51 | } |
52 | implements { | 52 | implements { |
53 | Efl.Object.constructor; | 53 | Efl.Object.constructor; |
54 | Efl.Gfx.color.set; | ||
54 | Efl.Canvas.Group.group_add; | 55 | Efl.Canvas.Group.group_add; |
55 | Efl.Canvas.Group.group_del; | 56 | Efl.Canvas.Group.group_del; |
56 | Efl.Canvas.Group.group_move; | 57 | Efl.Canvas.Group.group_move; |
57 | Efl.Canvas.Group.group_resize; | 58 | Efl.Canvas.Group.group_resize; |
58 | Efl.Canvas.Group.group_show; | 59 | Efl.Canvas.Group.group_show; |
59 | Efl.Canvas.Group.group_hide; | 60 | Efl.Canvas.Group.group_hide; |
60 | Efl.Canvas.Group.group_color.set; | ||
61 | Efl.Canvas.Group.group_clip.set; | 61 | Efl.Canvas.Group.group_clip.set; |
62 | Efl.Canvas.Group.group_clip_unset; | 62 | Efl.Canvas.Group.group_clip_unset; |
63 | Efl.File.file.set; | 63 | Efl.File.file.set; |