This commit is contained in:
Marcel Hollerbach 2020-06-19 08:49:58 +02:00
parent fda52b9fad
commit da1de5a2bb
2 changed files with 1 additions and 2 deletions

View File

@ -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
}
}

View File

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