Revert "elm_entry: add elm_entry_prediction_hint_hash_set/del API"
authorJongmin Lee <jm105.lee@samsung.com>
Fri, 15 Jun 2018 02:04:25 +0000 (11:04 +0900)
committerJongmin Lee <jm105.lee@samsung.com>
Fri, 15 Jun 2018 02:04:25 +0000 (11:04 +0900)
This reverts commit 432f5de7d3537b9a17806124b4bf76c1754f29c7.

src/lib/edje/edje_util.c

index 7c3be23..01f042e 100644 (file)
@@ -3126,44 +3126,6 @@ edje_object_part_text_prediction_hint_set(Eo *obj, const char *part, const char
      }
 }
 
-EAPI Eina_Bool
-edje_object_part_text_prediction_hint_hash_set(Eo *obj, const char *part, const char *key, const char *value)
-{
-   Edje_Real_Part *rp;
-   Edje *ed;
-
-   ed = _edje_fetch(obj);
-
-   if ((!ed) || (!part)) return EINA_FALSE;
-   rp = _edje_real_part_recursive_get(&ed, part);
-   if (!rp) return EINA_FALSE;
-   if (rp->part->entry_mode > EDJE_ENTRY_EDIT_MODE_NONE)
-     {
-        return _edje_entry_prediction_hint_hash_set(rp, key, value);
-     }
-   else
-     return EINA_FALSE;
-}
-
-EAPI Eina_Bool
-edje_object_part_text_prediction_hint_hash_del(Eo *obj, const char *part, const char *key)
-{
-   Edje_Real_Part *rp;
-   Edje *ed;
-
-   ed = _edje_fetch(obj);
-
-   if ((!ed) || (!part)) return EINA_FALSE;
-   rp = _edje_real_part_recursive_get(&ed, part);
-   if (!rp) return EINA_FALSE;
-   if (rp->part->entry_mode > EDJE_ENTRY_EDIT_MODE_NONE)
-     {
-        return _edje_entry_prediction_hint_hash_del(rp, key);
-     }
-   else
-     return EINA_FALSE;
-}
-
 Eina_Bool
 _edje_efl_content_content_set(Edje *ed, const char *part, Efl_Gfx_Entity *obj_swallow)
 {