From da1de5a2bb762ef1dc3b3239089fd9f457f41c36 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Fri, 19 Jun 2020 08:49:58 +0200 Subject: [PATCH] wip --- src/compiler-plugins/myplugin.cc | 2 +- src/lib/elementary/efl_ui_bg.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/compiler-plugins/myplugin.cc b/src/compiler-plugins/myplugin.cc index d7f0ced9a0..809f59812c 100644 --- a/src/compiler-plugins/myplugin.cc +++ b/src/compiler-plugins/myplugin.cc @@ -118,7 +118,7 @@ static unsigned int eo_execute(void) if (!c.klass) continue; - fprintf(stderr, "Found call of %s as super of %s\n", c.called_api, c.klass); + // FIXME fprintf(stderr, "Found call of %s as super of %s\n", c.called_api, c.klass); //FIXME work } } diff --git a/src/lib/elementary/efl_ui_bg.c b/src/lib/elementary/efl_ui_bg.c index 56ccdbd72f..fcd757d188 100644 --- a/src/lib/elementary/efl_ui_bg.c +++ b/src/lib/elementary/efl_ui_bg.c @@ -154,7 +154,6 @@ elm_bg_color_set(Evas_Object *obj, EOLIAN static void _efl_ui_bg_efl_gfx_color_color_set(Eo *obj, Efl_Ui_Bg_Data *sd, int r, int g, int b, int a) { - efl_gfx_color_set(efl_super(obj, MY_CLASS), r, g, b, a); efl_gfx_color_set(sd->rect, r, g, b, a); }