This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch devs/dimmus/meson
in repository efl.

View the commit online.

commit 7ad7aa68e05e7e5e0cc6857229fa127733689775
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Sat May 3 15:04:54 2025 +0100

    edje - edit - gcc15 break - adapt to new keywords in c23
    
    gcc 15 default policy of breaking existing code. adapt.
---
 src/lib/edje/edje_edit.c | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/lib/edje/edje_edit.c b/src/lib/edje/edje_edit.c
index 70294fd824..e4a5b4a1da 100644
--- a/src/lib/edje/edje_edit.c
+++ b/src/lib/edje/edje_edit.c
@@ -7757,11 +7757,11 @@ edje_edit_state_map_backface_cull_get(Evas_Object *obj, const char *part, const
 }
 
 EAPI Eina_Bool
-edje_edit_state_map_backface_cull_set(Evas_Object *obj, const char *part, const char *state, double value, Eina_Bool bool)
+edje_edit_state_map_backface_cull_set(Evas_Object *obj, const char *part, const char *state, double value, Eina_Bool b)
 {
    GET_PD_OR_RETURN(EINA_FALSE);
 
-   pd->map.backcull = bool;
+   pd->map.backcull = b;
 
    edje_object_calc_force(obj);
    return EINA_TRUE;
@@ -7776,11 +7776,11 @@ edje_edit_state_map_perspective_on_get(Evas_Object *obj, const char *part, const
 }
 
 EAPI Eina_Bool
-edje_edit_state_map_perspective_on_set(Evas_Object *obj, const char *part, const char *state, double value, Eina_Bool bool)
+edje_edit_state_map_perspective_on_set(Evas_Object *obj, const char *part, const char *state, double value, Eina_Bool b)
 {
    GET_PD_OR_RETURN(EINA_FALSE);
 
-   pd->map.persp_on = bool;
+   pd->map.persp_on = b;
 
    edje_object_calc_force(obj);
    return EINA_TRUE;
@@ -7795,22 +7795,22 @@ edje_edit_state_map_alpha_get(Evas_Object *obj, const char *part, const char *st
 }
 
 EAPI Eina_Bool
-edje_edit_state_map_alpha_set(Evas_Object *obj, const char *part, const char *state, double value, Eina_Bool bool)
+edje_edit_state_map_alpha_set(Evas_Object *obj, const char *part, const char *state, double value, Eina_Bool b)
 {
    GET_PD_OR_RETURN(EINA_FALSE);
 
-   pd->map.alpha = bool;
+   pd->map.alpha = b;
 
    edje_object_calc_force(obj);
    return EINA_TRUE;
 }
 
 EAPI Eina_Bool
-edje_edit_state_map_smooth_set(Evas_Object *obj, const char *part, const char *state, double value, Eina_Bool bool)
+edje_edit_state_map_smooth_set(Evas_Object *obj, const char *part, const char *state, double value, Eina_Bool b)
 {
    GET_PD_OR_RETURN(EINA_FALSE);
 
-   pd->map.smooth = bool;
+   pd->map.smooth = b;
 
    edje_object_calc_force(obj);
    return EINA_TRUE;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to