From bd0c639991467f52c974e6417b3498404fbc3ba8 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Wed, 3 Nov 2010 04:53:17 +0000 Subject: [PATCH] Remove unused variables (also removed 'moved' variable as it wasn't used other than setting to 1; never checked after that). SVN revision: 54115 --- src/modules/comp/e_mod_comp.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/modules/comp/e_mod_comp.c b/src/modules/comp/e_mod_comp.c index c52abfc..efdee96 100644 --- a/src/modules/comp/e_mod_comp.c +++ b/src/modules/comp/e_mod_comp.c @@ -2034,10 +2034,6 @@ _e_mod_comp_win_lower(E_Comp_Win *cw) static void _e_mod_comp_win_configure(E_Comp_Win *cw, int x, int y, int w, int h, int border) { - Eina_List *l; - Evas_Object *o; - Eina_Bool moved = 0; - if (!cw->visible) { cw->hidden.x = x; @@ -2052,7 +2048,6 @@ _e_mod_comp_win_configure(E_Comp_Win *cw, int x, int y, int w, int h, int border cw->x = x; cw->y = y; evas_object_move(cw->shobj, cw->x, cw->y); - moved = 1; } cw->hidden.x = x; cw->hidden.y = y; @@ -2082,9 +2077,9 @@ _e_mod_comp_win_configure(E_Comp_Win *cw, int x, int y, int w, int h, int border if ((cw->input_only) || (cw->invalid)) return; _e_mod_comp_win_render_queue(cw); cw->pending_count++; - e_manager_comp_event_src_config_send - (cw->c->man, (E_Manager_Comp_Source *)cw, - _e_mod_comp_cb_pending_after, cw->c); + e_manager_comp_event_src_config_send(cw->c->man, + (E_Manager_Comp_Source *)cw, + _e_mod_comp_cb_pending_after, cw->c); } static void -- 2.7.4