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); }