remove deprecated code related with
authorjypark <jypark@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 12 Mar 2012 08:40:03 +0000 (08:40 +0000)
committerjypark <jypark@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 12 Mar 2012 08:40:03 +0000 (08:40 +0000)
elm_font_cache_set/get
elm_image_cache_set/get
elm_cache_image_cache_size_get
function.

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

src/lib/elm_config.c

index e1d22e2..6e7f3b4 100644 (file)
@@ -1757,24 +1757,12 @@ elm_config_cache_flush_enabled_set(Eina_Bool enabled)
    _elm_recache();
 }
 
-EINA_DEPRECATED EAPI int
-elm_font_cache_get(void)
-{
-   return elm_config_cache_font_cache_size_get();
-}
-
 EAPI int
 elm_config_cache_font_cache_size_get(void)
 {
    return _elm_config->font_cache;
 }
 
-EINA_DEPRECATED EAPI void
-elm_font_cache_set(int size)
-{
-   elm_config_cache_font_cache_size_set(size);
-}
-
 EAPI void 
 elm_config_cache_font_cache_size_set(int size)
 {
@@ -1784,24 +1772,12 @@ elm_config_cache_font_cache_size_set(int size)
    _elm_recache();
 }
 
-EINA_DEPRECATED EAPI int
-elm_image_cache_get(void)
-{
-   return elm_config_cache_image_cache_size_get();
-}
-
 EAPI int
 elm_config_cache_image_cache_size_get(void)
 {
    return _elm_config->image_cache;
 }
 
-EINA_DEPRECATED EAPI void
-elm_image_cache_set(int size)
-{
-   elm_config_cache_image_cache_size_set(size);
-}
-
 EAPI void
 elm_config_cache_image_cache_size_set(int size)
 {