'everything'

- cleanups


SVN revision: 42190
This commit is contained in:
Hannes Janetzek 2009-09-02 19:46:12 +00:00
parent abc42d6a2a
commit 8d85504a49
1 changed files with 10 additions and 12 deletions

View File

@ -465,12 +465,11 @@ _fetch(Evry_Plugin *plugin, const char *input)
EINA_LIST_FOREACH(exe_list, l, file) EINA_LIST_FOREACH(exe_list, l, file)
{ {
if (!strncmp(file, input, len)) if (!strncmp(file, input, len))
/* && (!space || (strlen(file) == len))) */
{ {
app = _item_add(p, NULL, file, 100); app = _item_add(p, NULL, file, 100);
if (app) if (!app) continue;
{
eina_stringshare_del(EVRY_ITEM(app)->label); eina_stringshare_del(EVRY_ITEM(app)->label);
if (!space) if (!space)
EVRY_ITEM(app)->label = eina_stringshare_add(file); EVRY_ITEM(app)->label = eina_stringshare_add(file);
@ -484,7 +483,6 @@ _fetch(Evry_Plugin *plugin, const char *input)
} }
} }
} }
}
if (!plugin->items) return 0; if (!plugin->items) return 0;