This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository enlightenment-module-everything-websearch.
View the commit online.
commit 114c0192ab42addf53a51715f79d2b207c723e8d
Author: Mike Pento <[email protected]>
AuthorDate: Sat Feb 14 20:31:40 2026 -0500
everything-websearch: Fix several compile issues
1. __UNUSED__ -> EINA_UNUSED
2. e_icon_file_edje_set: should be void, removed bool check.
3. E_Comp -> Evas_Object (implicit-function-declaration)
4. Removed e_module_delayed_set
@fix
---
src/e_mod_main.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/src/e_mod_main.c b/src/e_mod_main.c
index 04afc8c..6e17ce2 100644
--- a/src/e_mod_main.c
+++ b/src/e_mod_main.c
@@ -827,7 +827,7 @@ _youtube_dl_timer(void *d)
}
static Eina_Bool
-_youtube_dl_cb_del(void *data, int type __UNUSED__, void *event)
+_youtube_dl_cb_del(void *data, int type EINA_UNUSED, void *event)
{
Youtube_Data *yd = data;
Ecore_Exe_Event_Del *e = event;
@@ -1176,7 +1176,7 @@ _icon_get(Evry_Item *it, Evas *e)
{
o = e_icon_add(e);
e_icon_preload_set(o, 1);
- if (e_icon_file_edje_set(o, _conf->theme, it->icon))
+ e_icon_file_edje_set(o, _conf->theme, it->icon);
return o;
evas_object_del(o);
@@ -1353,7 +1353,7 @@ static Evas_Object *_basic_create(E_Config_Dialog *cfd, Evas *evas, E_Config_Dia
static int _basic_apply(E_Config_Dialog *cfd, E_Config_Dialog_Data *cfdata);
static E_Config_Dialog *
-_conf_dialog(E_Comp *con, const char *params)
+_conf_dialog(Evas_Object *con, const char *params)
{
E_Config_Dialog *cfd = NULL;
E_Config_Dialog_View *v = NULL;
@@ -1613,8 +1613,6 @@ e_modapi_init(E_Module *m)
EVRY_MODULE_NEW(evry_module, evry, _plugins_init, _plugins_shutdown);
- e_module_delayed_set(m, 1);
-
return m;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.