diff options
Diffstat (limited to '')
-rw-r--r-- | legacy/emotion/src/lib/emotion_smart.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/legacy/emotion/src/lib/emotion_smart.c b/legacy/emotion/src/lib/emotion_smart.c index 395649c7e2..5fdbc33319 100644 --- a/legacy/emotion/src/lib/emotion_smart.c +++ b/legacy/emotion/src/lib/emotion_smart.c | |||
@@ -1547,3 +1547,13 @@ _smart_clip_unset(Evas_Object * obj) | |||
1547 | if (!sd) return; | 1547 | if (!sd) return; |
1548 | evas_object_clip_unset(sd->obj); | 1548 | evas_object_clip_unset(sd->obj); |
1549 | } | 1549 | } |
1550 | |||
1551 | EAPI Evas_Object * | ||
1552 | _emotion_image_get(const Evas_Object *obj) | ||
1553 | { | ||
1554 | Smart_Data *sd; | ||
1555 | |||
1556 | sd = evas_object_smart_data_get(obj); | ||
1557 | if (!sd) return NULL; | ||
1558 | return sd->obj; | ||
1559 | } | ||