diff options
author | Xavi Artigas <xavierartigas@yahoo.es> | 2018-04-05 17:50:35 +0200 |
---|---|---|
committer | Cedric Bail <cedric@osg.samsung.com> | 2018-04-24 09:03:39 -0700 |
commit | c837b321bf23598645773006d98dd01141a0810f (patch) | |
tree | 3693169431fe38e7d88489816e2182b469badf0d /src/lib/emotion/emotion_smart.c | |
parent | a28b2ff1d3baa3633433489d06bf9c1f13751297 (diff) |
Efl.Image_Load_Controller* (From Efl.Image.Load*)
Ref https://phab.enlightenment.org/T6847
Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
Diffstat (limited to '')
-rw-r--r-- | src/lib/emotion/emotion_smart.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/emotion/emotion_smart.c b/src/lib/emotion/emotion_smart.c index bc043ecc9d..291a7ec2fc 100644 --- a/src/lib/emotion/emotion_smart.c +++ b/src/lib/emotion/emotion_smart.c | |||
@@ -740,13 +740,13 @@ emotion_object_size_get(const Evas_Object *obj, int *iw, int *ih) | |||
740 | { | 740 | { |
741 | Eina_Size2D sz; | 741 | Eina_Size2D sz; |
742 | 742 | ||
743 | sz = efl_image_load_size_get(obj); | 743 | sz = efl_image_load_controller_load_size_get(obj); |
744 | if (iw) *iw = sz.w; | 744 | if (iw) *iw = sz.w; |
745 | if (ih) *ih = sz.h; | 745 | if (ih) *ih = sz.h; |
746 | } | 746 | } |
747 | 747 | ||
748 | EOLIAN static Eina_Size2D | 748 | EOLIAN static Eina_Size2D |
749 | _efl_canvas_video_efl_image_load_load_size_get(const Eo *obj EINA_UNUSED, Efl_Canvas_Video_Data *sd) | 749 | _efl_canvas_video_efl_image_load_controller_load_size_get(const Eo *obj EINA_UNUSED, Efl_Canvas_Video_Data *sd) |
750 | { | 750 | { |
751 | // FIXME: Shouldn't this be efl_gfx_view_size instead? | 751 | // FIXME: Shouldn't this be efl_gfx_view_size instead? |
752 | return EINA_SIZE2D(sd->video.w, sd->video.h); | 752 | return EINA_SIZE2D(sd->video.w, sd->video.h); |