Fix theme passed to efreet_icon_cache_add

Just pass NULL, no need for NULL theme

SVN revision: 51136
This commit is contained in:
Sebastian Dransfeld 2010-08-15 19:54:08 +00:00
parent 1d1a36047b
commit b001a8968e
1 changed files with 1 additions and 1 deletions

View File

@ -851,7 +851,7 @@ efreet_icon_fallback_icon(const char *icon_name)
icon = efreet_icon_fallback_dir_scan(path, icon_name);
if (icon)
{
efreet_icon_cache_add(efreet_icon_find_theme_check(NULL), icon_name, 0, icon);
efreet_icon_cache_add(NULL, icon_name, 0, icon);
return icon;
}
}