This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository enlightenment.
View the commit online.
commit fff93ec18c49d7db03ba1d56d1ecdc1f0b87e79a
Author: Carsten Haitzler <[email protected]>
AuthorDate: Sun Feb 15 15:16:48 2026 +0000
change handler protytype to not rely on 0 or more args
---
src/bin/e_comp_x.c | 4 ++--
src/bin/e_comp_x.h | 4 ++--
src/bin/e_sys.c | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c
index 45c715747..0fcf20150 100644
--- a/src/bin/e_comp_x.c
+++ b/src/bin/e_comp_x.c
@@ -5378,7 +5378,7 @@ _e_comp_cb_pointer_suspend_resume_done(void *data, Evas_Object *obj, const char
}
EINTERN Eina_Bool
-_e_comp_x_screensaver_on()
+_e_comp_x_screensaver_on(void *data EINA_UNUSED, int type EINA_UNUSED, void *event EINA_UNUSED)
{
const char *s;
@@ -5424,7 +5424,7 @@ _e_comp_x_screensaver_on()
}
EINTERN Eina_Bool
-_e_comp_x_screensaver_off()
+_e_comp_x_screensaver_off(void *data EINA_UNUSED, int type EINA_UNUSED, void *event EINA_UNUSED)
{
const char *s;
diff --git a/src/bin/e_comp_x.h b/src/bin/e_comp_x.h
index afe18d7fd..2eaf53b0c 100644
--- a/src/bin/e_comp_x.h
+++ b/src/bin/e_comp_x.h
@@ -119,8 +119,8 @@ EINTERN void e_comp_x_xwayland_client_setup(E_Client *ec, E_Client *wc);
E_API E_Pixmap *e_comp_x_client_pixmap_get(const E_Client *ec);
-EINTERN Eina_Bool _e_comp_x_screensaver_on();
-EINTERN Eina_Bool _e_comp_x_screensaver_off();
+EINTERN Eina_Bool _e_comp_x_screensaver_on(void *data, int type, void *event);
+EINTERN Eina_Bool _e_comp_x_screensaver_off(void *data, int type, void *event);
# endif
#endif
diff --git a/src/bin/e_sys.c b/src/bin/e_sys.c
index 23de1a1e8..366b0d9fc 100644
--- a/src/bin/e_sys.c
+++ b/src/bin/e_sys.c
@@ -193,7 +193,7 @@ _e_sys_comp_emit_cb_wait(E_Sys_Action a, const char *sig, const char *rep, Eina_
_e_sys_comp_zones_fade(a, sig, nocomp_push);
#ifndef HAVE_WAYLAND_ONLY
if (e_comp->comp_type == E_PIXMAP_TYPE_X)
- _e_comp_x_screensaver_on();
+ _e_comp_x_screensaver_on(NULL, E_EVENT_SCREENSAVER_ON, NULL);
#endif
#ifdef HAVE_WAYLAND
if (e_comp->comp_type == E_PIXMAP_TYPE_WL)
@@ -297,7 +297,7 @@ _e_sys_comp_resume2(void *data EINA_UNUSED)
#ifndef HAVE_WAYLAND_ONLY
if (e_comp->comp_type == E_PIXMAP_TYPE_X)
{
- _e_comp_x_screensaver_off();
+ _e_comp_x_screensaver_off(NULL, E_EVENT_SCREENSAVER_OFF, NULL);
ecore_x_screensaver_reset();
}
#endif
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.