edje: correct retrival of file name

When using eina_file_direct_ls, we already know where the file part of a
path is, not need to use ecore_file_file_get().

SVN revision: 67307
This commit is contained in:
Sebastian Dransfeld 2012-01-19 00:35:36 +00:00
parent 7f9dc64529
commit 46a8cf1c4c
1 changed files with 2 additions and 2 deletions

View File

@ -136,12 +136,12 @@ edje_available_modules_get(void)
snprintf(tmp, sizeof (tmp), "%s/%s/" EDJE_MODULE_NAME, info->path, MODULE_ARCH
#ifdef EDJE_EXTRA_MODULE_NAME
, ecore_file_file_get(info->path)
, info->path + info->name_start
#endif
);
if (ecore_file_exists(tmp))
result = eina_list_append(result, eina_stringshare_add(ecore_file_file_get(info->path)));
result = eina_list_append(result, eina_stringshare_add(info->path + info->name_start));
}
eina_iterator_free(it);