Web: bring legacy from the dead.
authorDaniel Zaoui <daniel.zaoui@samsung.com>
Wed, 7 May 2014 10:43:20 +0000 (13:43 +0300)
committerDaniel Zaoui <daniel.zaoui@samsung.com>
Wed, 7 May 2014 10:46:18 +0000 (13:46 +0300)
ABI check found that during Eolian integration of Elm Web, I forgot some
deprecated function.

legacy/elementary/src/lib/elm_web.c

index 318d11e..c46bef8 100644 (file)
@@ -1392,6 +1392,14 @@ elm_web_uri_set(Evas_Object *obj,
 #endif
 }
 
+EAPI const char *
+elm_web_uri_get(const Evas_Object *obj)
+{
+   const char *ret = NULL;
+   eo_do((Eo *) obj, ret = elm_obj_web_url_get());
+   return ret;
+}
+
 EOLIAN static Eina_Bool
 _elm_web_url_set(Eo *obj, Elm_Web_Data *_pd EINA_UNUSED, const char *url)
 {