raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=e84eb965f47d11903bc2e992a30f39706a43ab18
commit e84eb965f47d11903bc2e992a30f39706a43ab18 Author: Seunghun Lee <[email protected]> Date: Mon May 19 15:56:00 2014 +0900 remove unused variable use and function call Reviewers: raster, zmike CC: cedric Differential Revision: https://phab.enlightenment.org/D867 --- src/bin/e_comp_object.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 52df93a..a47b396 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -3096,10 +3096,9 @@ _e_comp_object_dirty(Eo *obj, E_Comp_Object *cw) Eina_Rectangle *r; Eina_List *l; Evas_Object *o; - int w, h, ow, oh; + int w, h; Eina_Bool dirty, visible; - evas_object_geometry_get(cw->obj, NULL, NULL, &ow, &oh); /* only actually dirty if pixmap is available */ dirty = e_pixmap_size_get(cw->ec->pixmap, &w, &h); visible = cw->visible; --
