From c43f83ef523ce22a53a95da5fa8ff74c147d7c8f Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Wed, 30 May 2012 12:27:40 +0000 Subject: [PATCH] e/e_zone: Comment out debug printf's Make the log more readable again. Nobody wants all this strange symbols in his log without a good reason. SVN revision: 71559 --- src/bin/e_zone.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/e_zone.c b/src/bin/e_zone.c index ba007f457..bbcc47ecd 100644 --- a/src/bin/e_zone.c +++ b/src/bin/e_zone.c @@ -186,8 +186,8 @@ e_zone_new(E_Container *con, zone->num = num; zone->id = id; e_zone_useful_geometry_dirty(zone); - - printf("@@@@@@@@@@ e_zone_new: %i %i | %i %i %ix%i = %p\n", num, id, x, y, w, h, zone); + + //printf("@@@@@@@@@@ e_zone_new: %i %i | %i %i %ix%i = %p\n", num, id, x, y, w, h, zone); zone->handlers = eina_list_append(zone->handlers, @@ -1385,7 +1385,7 @@ _e_zone_free(E_Zone *zone) E_Container *con; int x, y; - printf("@@@@@@@@@@ e_zone_free: %i %i | %i %i %ix%i = %p\n", zone->num, zone->id, zone->x, zone->y, zone->w, zone->h, zone); + //printf("@@@@@@@@@@ e_zone_free: %i %i | %i %i %ix%i = %p\n", zone->num, zone->id, zone->x, zone->y, zone->w, zone->h, zone); /* Delete the edge windows if they exist */ if (zone->edge.top) ecore_x_window_free(zone->edge.top); if (zone->edge.bottom) ecore_x_window_free(zone->edge.bottom);