Rename to match icon functions

SVN revision: 55135
This commit is contained in:
Sebastian Dransfeld 2010-12-02 08:32:22 +00:00
parent 4147f2f231
commit bbd2b07962
3 changed files with 4 additions and 4 deletions

View File

@ -299,7 +299,7 @@ main(int argc, char **argv)
/* finish efreet init */
if (!efreet_init()) goto efreet_error;
edd = efreet_desktop_edd_init();
edd = efreet_desktop_edd();
if (!edd) goto edd_error;
/* create cache */

View File

@ -97,7 +97,7 @@ efreet_cache_init(void)
_efreet_cache_log_dom = eina_log_domain_register("efreet_cache", EFREET_DEFAULT_LOG_COLOR);
if (_efreet_cache_log_dom < 0)
return 0;
if (!efreet_desktop_edd_init())
if (!efreet_desktop_edd())
goto error;
#ifdef ICON_CACHE
@ -447,7 +447,7 @@ efreet_icon_edd_shutdown(void)
* Needs EAPI because of helper binaries
*/
EAPI Eet_Data_Descriptor *
efreet_desktop_edd_init(void)
efreet_desktop_edd(void)
{
Eet_Data_Descriptor_Class eddc;

View File

@ -1,7 +1,7 @@
#ifndef EFREET_CACHE_PRIVATE_H
#define EFREET_CACHE_PRIVATE_H
EAPI Eet_Data_Descriptor *efreet_desktop_edd_init(void);
EAPI Eet_Data_Descriptor *efreet_desktop_edd(void);
#ifdef ICON_CACHE
EAPI Eet_Data_Descriptor *efreet_icon_theme_edd(Eina_Bool include_dirs);
EAPI Eet_Data_Descriptor *efreet_icon_fallback_edd(Eina_Bool include_dirs);