diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2016-03-02 20:46:11 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2016-03-15 11:11:59 +0900 |
commit | b458341a13b93b2f963745fae34b3ce14668f99d (patch) | |
tree | d10822600532ce5ea115b7a7e38e112bf196c87d /src/lib/emotion | |
parent | e3de15d72642a61f57dda280befe458cb546c527 (diff) |
Efl.Gfx.Buffer: Add interface skeletton
Diffstat (limited to '')
-rw-r--r-- | src/lib/emotion/emotion_object.eo | 4 | ||||
-rw-r--r-- | src/lib/emotion/emotion_smart.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/emotion/emotion_object.eo b/src/lib/emotion/emotion_object.eo index 3486c5cef3..39ee910564 100644 --- a/src/lib/emotion/emotion_object.eo +++ b/src/lib/emotion/emotion_object.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Emotion.Object (Evas.Object_Smart, Efl.File, Efl.Player, Efl.Image) { | 1 | class Emotion.Object (Evas.Object_Smart, Efl.File, Efl.Player, Efl.Image, Efl.Image_Load) { |
2 | eo_prefix: emotion_obj; | 2 | eo_prefix: emotion_obj; |
3 | methods { | 3 | methods { |
4 | @property option { | 4 | @property option { |
@@ -74,7 +74,7 @@ class Emotion.Object (Evas.Object_Smart, Efl.File, Efl.Player, Efl.Image) { | |||
74 | Efl.Player.audio_mute.get; | 74 | Efl.Player.audio_mute.get; |
75 | Efl.Player.length.get; | 75 | Efl.Player.length.get; |
76 | Efl.Player.seekable.get; | 76 | Efl.Player.seekable.get; |
77 | Efl.Image.load_size.get; | 77 | Efl.Image_Load.load_size.get; |
78 | Efl.Image.ratio.get; | 78 | Efl.Image.ratio.get; |
79 | Efl.Image.smooth_scale.set; | 79 | Efl.Image.smooth_scale.set; |
80 | Efl.Image.smooth_scale.get; | 80 | Efl.Image.smooth_scale.get; |
diff --git a/src/lib/emotion/emotion_smart.c b/src/lib/emotion/emotion_smart.c index d0b0f327f8..804b865307 100644 --- a/src/lib/emotion/emotion_smart.c +++ b/src/lib/emotion/emotion_smart.c | |||
@@ -748,7 +748,7 @@ emotion_object_size_get(const Evas_Object *obj, int *iw, int *ih) | |||
748 | } | 748 | } |
749 | 749 | ||
750 | EOLIAN static void | 750 | EOLIAN static void |
751 | _emotion_object_efl_image_load_size_get(Eo *obj EINA_UNUSED, Emotion_Object_Data *sd, int *iw, int *ih) | 751 | _emotion_object_efl_image_load_load_size_get(Eo *obj EINA_UNUSED, Emotion_Object_Data *sd, int *iw, int *ih) |
752 | { | 752 | { |
753 | if (iw) *iw = sd->video.w; | 753 | if (iw) *iw = sd->video.w; |
754 | if (ih) *ih = sd->video.h; | 754 | if (ih) *ih = sd->video.h; |