devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=4c42448ffad82c39cba24be6737a140dc8aa3d69
commit 4c42448ffad82c39cba24be6737a140dc8aa3d69 Author: Chris Michael <[email protected]> Date: Fri Jan 23 14:29:51 2015 -0500 de-e_comp_get()ify e_actions Signed-off-by: Chris Michael <[email protected]> --- src/bin/e_actions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_actions.c b/src/bin/e_actions.c index 6f2d4cf..d420470 100644 --- a/src/bin/e_actions.c +++ b/src/bin/e_actions.c @@ -2443,7 +2443,7 @@ ACT_FN_GO(pointer_resize_push, ) if ((ec->lock_user_size) || (ec->shaded) || (ec->shading) || (ec->fullscreen) || ((ec->maximized) && (!e_config->allow_manip))) return; - e_pointer_type_push(e_comp_get(ec)->pointer, ec, params); + e_pointer_type_push(e_comp->pointer, ec, params); } } @@ -2459,7 +2459,7 @@ ACT_FN_GO(pointer_resize_pop, ) if ((ec->lock_user_size) || (ec->shaded) || (ec->shading) || (ec->fullscreen) || ((ec->maximized) && (!e_config->allow_manip))) return; - e_pointer_type_pop(e_comp_get(ec)->pointer, ec, params); + e_pointer_type_pop(e_comp->pointer, ec, params); } } --
