edje calc - wanr - move fallthrough tag to just before next case

fixes warning for it not being there... no bug here though
This commit is contained in:
Carsten Haitzler 2018-11-08 15:21:15 +00:00
parent 921d3b4979
commit 7847af7f57
1 changed files with 6 additions and 6 deletions

View File

@ -4630,14 +4630,14 @@ _edje_part_recalc(Edje *ed, Edje_Real_Part *ep, int flags, Edje_Calc_Params *sta
switch (ep->part->type)
{
case EDJE_PART_TYPE_IMAGE:
{
Edje_Part_Description_Image *img_desc = (Edje_Part_Description_Image *)chosen_desc;
{
Edje_Part_Description_Image *img_desc = (Edje_Part_Description_Image *)chosen_desc;
evas_object_image_scale_hint_set(ep->object,
img_desc->image.scale_hint);
evas_object_image_scale_hint_set(ep->object,
img_desc->image.scale_hint);
}
/* No break here as we share the rest of the code for all types. Intended fall-through*/
EINA_FALLTHROUGH;
/* No break here as we share the rest of the code for all types. Intended fall-through*/
}
case EDJE_PART_TYPE_PROXY:
EINA_FALLTHROUGH;