Make efreet_cache_icon_theme_free static

SVN revision: 56903
This commit is contained in:
Sebastian Dransfeld 2011-02-10 14:24:09 +00:00
parent c999910e15
commit 45aebcb121
3 changed files with 3 additions and 2 deletions

View File

@ -64,3 +64,4 @@
* Remove unneeded header
* Check if pattern equals "*" before doing pattern match
* Remove EAPI from efreet_home_dir_get
* Make efreet_cache_icon_theme_free only used in efreet_cache.c static

View File

@ -80,6 +80,7 @@ static Eina_List *old_desktop_caches = NULL;
static void efreet_cache_edd_shutdown(void);
static void efreet_cache_icon_free(Efreet_Cache_Icon *icon);
static void efreet_cache_icon_fallback_free(Efreet_Cache_Fallback_Icon *icon);
static void efreet_cache_icon_theme_free(Efreet_Icon_Theme *theme);
static Eina_Bool cache_exe_cb(void *data, int type, void *event);
static void cache_update_cb(void *data, Ecore_File_Monitor *em,
@ -672,7 +673,7 @@ efreet_cache_icon_theme_find(const char *theme)
return NULL;
}
void
static void
efreet_cache_icon_theme_free(Efreet_Icon_Theme *theme)
{
void *data;

View File

@ -218,7 +218,6 @@ EAPI const char *efreet_icon_theme_cache_file(void);
Efreet_Cache_Icon *efreet_cache_icon_find(Efreet_Icon_Theme *theme, const char *icon);
Efreet_Cache_Fallback_Icon *efreet_cache_icon_fallback_find(const char *icon);
Efreet_Icon_Theme *efreet_cache_icon_theme_find(const char *theme);
void efreet_cache_icon_theme_free(Efreet_Icon_Theme *theme);
Eina_List *efreet_cache_icon_theme_list(void);
EAPI void efreet_cache_array_string_free(Efreet_Cache_Array_String *array);