formatting

SVN revision: 39643
This commit is contained in:
Vincent Torri 2009-03-23 04:58:31 +00:00
parent d38a2a9488
commit a7dfd144ac
1 changed files with 8 additions and 8 deletions

View File

@ -710,15 +710,15 @@ efreet_icon_lookup_directory(Efreet_Icon_Theme *theme,
Efreet_Icon_Theme_Directory *dir,
const char *icon_name)
{
Eina_List *l;
char *icon;
const char *path;
Eina_List *l;
char *icon;
const char *path;
EINA_LIST_FOREACH(theme->paths, l, path)
{
icon = efreet_icon_lookup_directory_helper(dir, path, icon_name);
if (icon) return icon;
}
EINA_LIST_FOREACH(theme->paths, l, path)
{
icon = efreet_icon_lookup_directory_helper(dir, path, icon_name);
if (icon) return icon;
}
return NULL;
}