From 11b7cf6b728001dbcd42ce41d5ac2e129a835fd8 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Tue, 11 Oct 2016 12:39:05 +0900 Subject: evas/elm: Remove function group_move This is an override of efl_gfx_position_set. As for the other patches, I hope I didn't break anything. A problem likely to happen is that the super call was inserted too early or too late in the call flow. For instance: _myclass_position_set(obj, x, y) { position_set(super(obj), x, y); position_get(obj, &prevx, &prevy); do_something_with_delta_xy(); } The above code flow is obvisouly wrong, but may have crept in this patch (such a bug sneaked in inside smart object, breaking everything at first). --- src/lib/emotion/efl_canvas_video.eo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/emotion/efl_canvas_video.eo') diff --git a/src/lib/emotion/efl_canvas_video.eo b/src/lib/emotion/efl_canvas_video.eo index 4851f2b190..fb9b96d4ae 100644 --- a/src/lib/emotion/efl_canvas_video.eo +++ b/src/lib/emotion/efl_canvas_video.eo @@ -53,10 +53,10 @@ class Efl.Canvas.Video (Efl.Canvas.Group, Efl.File, Efl.Player, Efl.Image, Efl.I Efl.Object.constructor; Efl.Gfx.color.set; Efl.Gfx.visible.set; + Efl.Gfx.position.set; Efl.Canvas.Object.clip.set; Efl.Canvas.Group.group_add; Efl.Canvas.Group.group_del; - Efl.Canvas.Group.group_move; Efl.Canvas.Group.group_resize; Efl.File.file.set; Efl.File.file.get; -- cgit v1.2.1