remove code related with
authorjypark <jypark@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 9 Mar 2012 15:29:27 +0000 (15:29 +0000)
committerjypark <jypark@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 9 Mar 2012 15:29:27 +0000 (15:29 +0000)
elm_entry_icon_
elm_entry_end_
which was deprecated

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@69110 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/elm_entry.c
src/lib/elm_entry.h

index 80ad4e3..fb21f69 100644 (file)
@@ -3504,28 +3504,6 @@ elm_entry_scrollable_get(const Evas_Object *obj)
 }
 
 EAPI void
-elm_entry_icon_set(Evas_Object *obj, Evas_Object *icon)
-{
-   ELM_CHECK_WIDTYPE(obj, widtype);
-   EINA_SAFETY_ON_NULL_RETURN(icon);
-   _content_set_hook(obj, NULL, icon);
-}
-
-EAPI Evas_Object *
-elm_entry_icon_get(const Evas_Object *obj)
-{
-   ELM_CHECK_WIDTYPE(obj, widtype) NULL;
-   return _content_get_hook(obj, NULL);
-}
-
-EAPI Evas_Object *
-elm_entry_icon_unset(Evas_Object *obj)
-{
-   ELM_CHECK_WIDTYPE(obj, widtype) NULL;
-   return _content_unset_hook(obj, NULL);
-}
-
-EAPI void
 elm_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting)
 {
    ELM_CHECK_WIDTYPE(obj, widtype);
@@ -3546,28 +3524,6 @@ elm_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting)
 }
 
 EAPI void
-elm_entry_end_set(Evas_Object *obj, Evas_Object *end)
-{
-   ELM_CHECK_WIDTYPE(obj, widtype);
-   EINA_SAFETY_ON_NULL_RETURN(end);
-   _content_set_hook(obj, "end", end);
-}
-
-EAPI Evas_Object *
-elm_entry_end_get(const Evas_Object *obj)
-{
-   ELM_CHECK_WIDTYPE(obj, widtype) NULL;
-   return _content_get_hook(obj, "end");
-}
-
-EAPI Evas_Object *
-elm_entry_end_unset(Evas_Object *obj)
-{
-   ELM_CHECK_WIDTYPE(obj, widtype) NULL;
-   return _content_unset_hook(obj, "end");
-}
-
-EAPI void
 elm_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting)
 {
    ELM_CHECK_WIDTYPE(obj, widtype);
index 311d2bd..3e8d54b 100644 (file)
@@ -1109,7 +1109,7 @@ EAPI Eina_Bool          elm_entry_scrollable_get(const Evas_Object *obj);
 
 /**
  * Sets the visibility of the left-side widget of the entry,
- * set by elm_entry_icon_set().
+ * set by elm_object_part_content_set().
  *
  * @param obj The entry object
  * @param setting EINA_TRUE if the object should be displayed,