'everything' module: forgot -Wall..

SVN revision: 41924
This commit is contained in:
Hannes Janetzek 2009-08-22 02:11:35 +00:00
parent 1436dac852
commit b2ca07fa41
2 changed files with 4 additions and 2 deletions

View File

@ -246,7 +246,7 @@ evry_item_new(Evry_Plugin *p, const char *label, void (*cb_free) (Evry_Item *ite
it->plugin = p;
if (label) it->label = eina_stringshare_add(label);
if (free) it->free = cb_free;
it->free = cb_free;
it->ref = 1;
@ -980,7 +980,7 @@ _evry_selector_objects_get(Evry_Action *act)
(!act->intercept || act->intercept(act)) &&
(p = plugin->begin(plugin, it)))
plugins = eina_list_append(plugins, p);
else if (p = plugin->begin(plugin, NULL))
else if ((p = plugin->begin(plugin, NULL)))
plugins = eina_list_append(plugins, p);
}
else

View File

@ -618,6 +618,8 @@ _exec_border_intercept(Evry_Action *act)
it->data[0] = app;
act->item1 = it;
return 1;
}