From 4c3d81f1ad2fba8654b2eb8cfcba98d52ae0fb42 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Fri, 15 Jun 2012 17:21:19 +0000 Subject: [PATCH] Tasks: Remove these useless code lines. No point in fetching geometry if we are not going to use it for anything ;) SVN revision: 72199 --- src/modules/tasks/e_mod_main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/tasks/e_mod_main.c b/src/modules/tasks/e_mod_main.c index 324e68cc4..bf80ae1dc 100644 --- a/src/modules/tasks/e_mod_main.c +++ b/src/modules/tasks/e_mod_main.c @@ -223,8 +223,8 @@ _gc_init(E_Gadcon *gc, const char *name, const char *id, const char *style __UNU Tasks *tasks; Evas_Object *o; E_Gadcon_Client *gcc; - Evas_Coord x, y, w, h; - int cx, cy, cw, ch; + /* Evas_Coord x, y, w, h; */ + /* int cx, cy, cw, ch; */ tasks = _tasks_new(gc->evas, gc->zone, id); @@ -233,8 +233,8 @@ _gc_init(E_Gadcon *gc, const char *name, const char *id, const char *style __UNU gcc->data = tasks; tasks->gcc = gcc; - e_gadcon_canvas_zone_geometry_get(gcc->gadcon, &cx, &cy, &cw, &ch); - evas_object_geometry_get(o, &x, &y, &w, &h); + /* e_gadcon_canvas_zone_geometry_get(gcc->gadcon, &cx, &cy, &cw, &ch); */ + /* evas_object_geometry_get(o, &x, &y, &w, &h); */ tasks_config->tasks = eina_list_append(tasks_config->tasks, tasks);