raster pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=7847af7f5734cdd3f098e6f8af4d07a012d0ccc7

commit 7847af7f5734cdd3f098e6f8af4d07a012d0ccc7
Author: Carsten Haitzler (Rasterman) <[email protected]>
Date:   Thu Nov 8 15:21:15 2018 +0000

    edje calc - wanr - move fallthrough tag to just before next case
    
    fixes warning for it not being there... no bug here though
---
 src/lib/edje/edje_calc.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/lib/edje/edje_calc.c b/src/lib/edje/edje_calc.c
index 33af2edbf9..1055791495 100644
--- a/src/lib/edje/edje_calc.c
+++ b/src/lib/edje/edje_calc.c
@@ -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;

-- 


Reply via email to