jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=cdc8d15a5ca0eb478882e670af89fa914ffec8ce
commit cdc8d15a5ca0eb478882e670af89fa914ffec8ce Author: Jean-Philippe Andre <[email protected]> Date: Wed Jul 13 15:33:13 2016 +0900 edje: Add missing 'break' in edje_embryo switch Fixes CID: 1352521 1352522 1352523 1352524 1352525 See 4ed9b8325 --- src/lib/edje/edje_embryo.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/lib/edje/edje_embryo.c b/src/lib/edje/edje_embryo.c index 9c5c124..a246499 100644 --- a/src/lib/edje/edje_embryo.c +++ b/src/lib/edje/edje_embryo.c @@ -2732,6 +2732,8 @@ _edje_embryo_fn_set_state_val(Embryo_Program *ep, Embryo_Cell *params) box = (Edje_Part_Description_Box *)rp->custom->description; box->box.layout = s; + + break; } case EDJE_STATE_PARAM_BOX_FALLBACK_LAYOUT: @@ -2745,6 +2747,8 @@ _edje_embryo_fn_set_state_val(Embryo_Program *ep, Embryo_Cell *params) box = (Edje_Part_Description_Box *)rp->custom->description; box->box.alt_layout = s; + + break; } case EDJE_STATE_PARAM_BOX_ALIGN: @@ -2756,6 +2760,8 @@ _edje_embryo_fn_set_state_val(Embryo_Program *ep, Embryo_Cell *params) box = (Edje_Part_Description_Box *)rp->custom->description; GETFLOAT_T(box->box.align.x, params[3]); GETFLOAT_T(box->box.align.y, params[4]); + + break; } case EDJE_STATE_PARAM_BOX_PADDING: @@ -2767,6 +2773,8 @@ _edje_embryo_fn_set_state_val(Embryo_Program *ep, Embryo_Cell *params) box = (Edje_Part_Description_Box *)rp->custom->description; GETINT(box->box.padding.x, params[3]); GETINT(box->box.padding.y, params[4]); + + break; } case EDJE_STATE_PARAM_BOX_MIN: @@ -2778,6 +2786,8 @@ _edje_embryo_fn_set_state_val(Embryo_Program *ep, Embryo_Cell *params) box = (Edje_Part_Description_Box *)rp->custom->description; GETINT(box->box.min.h, params[3]); GETINT(box->box.min.v, params[4]); + + break; } #ifdef HAVE_EPHYSICS --
