replace all uses of g_print by g_debug

2008-08-08  Jens Granseuer  <jensgr@gmx.net>

	* xrandr-capplet.c: (on_screen_changed), (rebuild_gui),
	(print_edge), (on_output_event), (paint_output), (on_area_paint),
	(check_required_virtual_size), (apply), (run_application): replace
	all uses of g_print by g_debug

svn path=/trunk/; revision=8848
This commit is contained in:
Jens Granseuer 2008-08-08 17:51:22 +00:00 committed by Jens Granseuer
parent 84963ec8ef
commit 21ded784f8
2 changed files with 31 additions and 20 deletions

View file

@ -1,3 +1,10 @@
2008-08-08 Jens Granseuer <jensgr@gmx.net>
* xrandr-capplet.c: (on_screen_changed), (rebuild_gui),
(print_edge), (on_output_event), (paint_output), (on_area_paint),
(check_required_virtual_size), (apply), (run_application): replace
all uses of g_print by g_debug
2008-08-08 Jens Granseuer <jensgr@gmx.net> 2008-08-08 Jens Granseuer <jensgr@gmx.net>
* xrandr-capplet.c: (run_application), (main): don't leak the * xrandr-capplet.c: (run_application), (main): don't leak the

View file

@ -125,12 +125,12 @@ on_screen_changed (GnomeRRScreen *scr,
{ {
GnomeOutputInfo *o = app->current_configuration->outputs[i]; GnomeOutputInfo *o = app->current_configuration->outputs[i];
g_print (" output %s %s: %d %d %d %d\n", o->name, o->on? "on" : "off", o->x, o->y, o->width, o->height); g_debug (" output %s %s: %d %d %d %d", o->name, o->on? "on" : "off", o->x, o->y, o->width, o->height);
} }
#endif #endif
#if 0 #if 0
g_print ("sorting\n"); g_debug ("sorting");
#endif #endif
/* Sort outputs according to X coordinate */ /* Sort outputs according to X coordinate */
for (i = 0; app->current_configuration->outputs[i] != NULL; ++i) for (i = 0; app->current_configuration->outputs[i] != NULL; ++i)
@ -144,7 +144,7 @@ on_screen_changed (GnomeRRScreen *scr,
{ {
GnomeOutputInfo *o = app->current_configuration->outputs[i]; GnomeOutputInfo *o = app->current_configuration->outputs[i];
g_print (" output: %d %d %d %d\n", o->x, o->y, o->width, o->height); g_debug (" output: %d %d %d %d", o->x, o->y, o->width, o->height);
} }
#endif #endif
@ -585,7 +585,7 @@ rebuild_gui (App *app)
sensitive = app->current_output? TRUE : FALSE; sensitive = app->current_output? TRUE : FALSE;
#if 0 #if 0
g_print ("rebuild gui, is on: %d\n", app->current_output->on); g_debug ("rebuild gui, is on: %d", app->current_output->on);
#endif #endif
rebuild_resolution_combo (app); rebuild_resolution_combo (app);
@ -595,7 +595,7 @@ rebuild_gui (App *app)
gtk_widget_set_sensitive (app->resolution_combo, sensitive); gtk_widget_set_sensitive (app->resolution_combo, sensitive);
#if 0 #if 0
g_print ("sensitive: %d, on: %d\n", sensitive, app->current_output->on); g_debug ("sensitive: %d, on: %d", sensitive, app->current_output->on);
#endif #endif
gtk_widget_set_sensitive (app->panel_checkbox, sensitive); gtk_widget_set_sensitive (app->panel_checkbox, sensitive);
@ -993,7 +993,7 @@ list_snaps (GnomeOutputInfo *output, GArray *edges, GArray *snaps)
static void static void
print_edge (Edge *edge) print_edge (Edge *edge)
{ {
g_print ("(%d %d %d %d)", edge->x1, edge->y1, edge->x2, edge->y2); g_debug ("(%d %d %d %d)", edge->x1, edge->y1, edge->x2, edge->y2);
} }
#endif #endif
@ -1267,7 +1267,7 @@ on_output_event (FooScrollArea *area,
output->user_data = NULL; output->user_data = NULL;
#if 0 #if 0
g_print ("new position: %d %d %d %d\n", output->x, output->y, output->width, output->height); g_debug ("new position: %d %d %d %d", output->x, output->y, output->width, output->height);
#endif #endif
} }
@ -1359,7 +1359,7 @@ paint_output (App *app, cairo_t *cr, int i)
get_geometry (output, &w, &h); get_geometry (output, &w, &h);
#if 0 #if 0
g_print ("%s (%p) geometry %d %d %d\n", output->name, output, g_debug ("%s (%p) geometry %d %d %d", output->name, output,
w, h, output->rate); w, h, output->rate);
#endif #endif
@ -1370,11 +1370,11 @@ paint_output (App *app, cairo_t *cr, int i)
y = output->y * scale + MARGIN + (viewport.height - total_h * scale) / 2.0; y = output->y * scale + MARGIN + (viewport.height - total_h * scale) / 2.0;
#if 0 #if 0
g_print ("scaled: %f %f\n", x, y); g_debug ("scaled: %f %f", x, y);
g_print ("scale: %f\n", scale); g_debug ("scale: %f", scale);
g_print ("%f %f %f %f\n", x, y, w * scale + 0.5, h * scale + 0.5); g_debug ("%f %f %f %f", x, y, w * scale + 0.5, h * scale + 0.5);
#endif #endif
cairo_save (cr); cairo_save (cr);
@ -1488,7 +1488,7 @@ on_area_paint (FooScrollArea *area,
connected_outputs = list_connected_outputs (app, NULL, NULL); connected_outputs = list_connected_outputs (app, NULL, NULL);
#if 0 #if 0
g_print ("scale: %f\n", scale); g_debug ("scale: %f", scale);
#endif #endif
for (list = connected_outputs; list != NULL; list = list->next) for (list = connected_outputs; list != NULL; list = list->next)
@ -1584,11 +1584,11 @@ check_required_virtual_size (App *app)
gnome_rr_screen_get_ranges (app->screen, &min_width, &max_width, &min_height, &max_height); gnome_rr_screen_get_ranges (app->screen, &min_width, &max_width, &min_height, &max_height);
#if 0 #if 0
g_print ("X Server supports:\n"); g_debug ("X Server supports:");
g_print ("min_width = %d, max_width = %d\n", min_width, max_width); g_debug ("min_width = %d, max_width = %d", min_width, max_width);
g_print ("min_height = %d, max_height = %d\n", min_height, max_height); g_debug ("min_height = %d, max_height = %d", min_height, max_height);
g_print ("Requesting size of %dx%d\n", req_width, req_height); g_debug ("Requesting size of %dx%d", req_width, req_height);
#endif #endif
if (!(min_width <= req_width && req_width <= max_width if (!(min_width <= req_width && req_width <= max_width
@ -1596,7 +1596,7 @@ check_required_virtual_size (App *app)
{ {
/* FIXME: present a useful dialog, maybe even before the user tries to Apply */ /* FIXME: present a useful dialog, maybe even before the user tries to Apply */
#if 0 #if 0
g_print ("Your X server needs a larger Virtual size!\n"); g_debug ("Your X server needs a larger Virtual size!");
#endif #endif
} }
} }
@ -1621,7 +1621,7 @@ apply (App *app)
message.xclient.format = 8; message.xclient.format = 8;
#if 0 #if 0
g_print ("Sending client message\n"); g_debug ("Sending client message");
#endif #endif
XSendEvent (gdk_x11_get_default_xdisplay(), XSendEvent (gdk_x11_get_default_xdisplay(),
@ -1766,11 +1766,15 @@ restart:
/* Fall Through */ /* Fall Through */
case GTK_RESPONSE_DELETE_EVENT: case GTK_RESPONSE_DELETE_EVENT:
case GTK_RESPONSE_CLOSE: case GTK_RESPONSE_CLOSE:
g_print ("Close\n"); #if 0
g_debug ("Close");
#endif
break; break;
case GTK_RESPONSE_HELP: case GTK_RESPONSE_HELP:
g_print ("Help\n"); #if 0
g_debug ("Help");
#endif
goto restart; goto restart;
break; break;