Remove debugging printfs.

2004-11-09  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtkfilechooserbutton.c (update_idler): Remove debugging
	printfs.
This commit is contained in:
Matthias Clasen 2004-11-10 03:13:43 +00:00 committed by Matthias Clasen
parent dc25aac558
commit 384b1c4886
5 changed files with 13 additions and 5 deletions

View File

@ -1,5 +1,8 @@
2004-11-09 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserbutton.c (update_idler): Remove debugging
printfs.
* gtk/gtkicontheme.[ch]: Improve the docs. (#157785,
Torsten Schoenfeld)

View File

@ -1,5 +1,8 @@
2004-11-09 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserbutton.c (update_idler): Remove debugging
printfs.
* gtk/gtkicontheme.[ch]: Improve the docs. (#157785,
Torsten Schoenfeld)

View File

@ -1,5 +1,8 @@
2004-11-09 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserbutton.c (update_idler): Remove debugging
printfs.
* gtk/gtkicontheme.[ch]: Improve the docs. (#157785,
Torsten Schoenfeld)

View File

@ -1,5 +1,8 @@
2004-11-09 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserbutton.c (update_idler): Remove debugging
printfs.
* gtk/gtkicontheme.[ch]: Improve the docs. (#157785,
Torsten Schoenfeld)

View File

@ -1683,7 +1683,6 @@ update_idler (gpointer user_data)
if (!gtk_editable_get_selection_bounds (GTK_EDITABLE (priv->entry),
&start, &end))
{
g_print ("updating dialog\n");
g_signal_handler_block (priv->dialog,
priv->dialog_selection_changed_id);
update_dialog (user_data);
@ -1695,10 +1694,7 @@ update_idler (gpointer user_data)
retval = FALSE;
}
else
{
g_print ("start %d end %d\n", start, end);
retval = TRUE;
}
retval = TRUE;
GDK_THREADS_LEAVE ();