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

git pushed a commit to branch master
in repository terminology.

View the commit online.

commit 975a98092e39e5cdfd8c03bf40501a0eccfb5f4e
Author: Boris Faure <bill...@gmail.com>
AuthorDate: Mon Sep 26 21:56:51 2022 +0200

    colors: test return of edje_object_color_class_set() Fix CID1498351
---
 src/bin/colors.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/bin/colors.c b/src/bin/colors.c
index a298ee2..7db0901 100644
--- a/src/bin/colors.c
+++ b/src/bin/colors.c
@@ -649,7 +649,12 @@ color_scheme_apply(Evas_Object *edje,
    CS_SET_MANY("TAB_TITLE", normal.def, tab_title_2, bg);
 
 #define CS_DARK      64,  64,  64, 255
-edje_object_color_class_set(edje, "BG_SENDFILE", CS_DARK, CS_DARK, CS_DARK);
+   if (edje_object_color_class_set(edje, "BG_SENDFILE", CS_DARK, CS_DARK, CS_DARK)
+       != EINA_TRUE)
+     {
+        ERR("error setting color class '%s' on object %p",
+              "BG_SENDFILE", edje);
+     }
 #undef CS_DARK
 
 #undef CS_SET

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

Reply via email to