summaryrefslogtreecommitdiff
path: root/src/lib/emotion/efl_canvas_video.eo
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@samsung.com>2019-08-29 09:26:15 -0400
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2019-08-29 17:17:08 +0200
commit9e0a285eea9753ed8f6999c1813d43724faf0c31 (patch)
tree6bc9977f44e6c9940bc887efb20ccfe4c9d8c01f /src/lib/emotion/efl_canvas_video.eo
parent0ef9228e5ff0b5b506ebb95136998463d6d0091c (diff)
downloadefl-9e0a285eea9753ed8f6999c1813d43724faf0c31.tar.gz
efl: implement efl.file::unload for classes that implement load
unload is a crucial method for classes that implement load, as this is the method which is called during e.g., efl_file_simple_load() when a new file is specified in order to destroy the previous object data Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de> Differential Revision: https://phab.enlightenment.org/D9786
Diffstat (limited to 'src/lib/emotion/efl_canvas_video.eo')
-rw-r--r--src/lib/emotion/efl_canvas_video.eo1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/emotion/efl_canvas_video.eo b/src/lib/emotion/efl_canvas_video.eo
index 3aa165fe74..be94fcc88a 100644
--- a/src/lib/emotion/efl_canvas_video.eo
+++ b/src/lib/emotion/efl_canvas_video.eo
@@ -52,6 +52,7 @@ class @beta Efl.Canvas.Video extends Efl.Canvas.Group implements Efl.File, Efl.P
Efl.Gfx.Entity.position { set; }
Efl.Gfx.Entity.size { set; }
Efl.File.load;
+ Efl.File.unload;
Efl.File.file { set; }
Efl.File.loaded { get; }
Efl.Player.play { get; set; }