gtk+ r19827 - trunk/gtk



Author: federico
Date: Thu Mar 13 00:38:11 2008
New Revision: 19827
URL: http://svn.gnome.org/viewvc/gtk+?rev=19827&view=rev

Log:
Remove debug printfs from populate_completion_store()

Signed-off-by: Federico Mena Quintero <federico gnu org>


Modified:
   trunk/gtk/gtkfilechooserentry.c

Modified: trunk/gtk/gtkfilechooserentry.c
==============================================================================
--- trunk/gtk/gtkfilechooserentry.c	(original)
+++ trunk/gtk/gtkfilechooserentry.c	Thu Mar 13 00:38:11 2008
@@ -750,10 +750,7 @@
   printf ("Populating completion store\n");
 
   if (!gtk_file_folder_list_children (chooser_entry->current_folder, &paths, NULL)) /* NULL-GError */
-    {
-      printf ("No children in the folder!  Leaving an empty completion store.\n");
-      return;
-    }
+    return;
 
   discard_completion_store (chooser_entry);
 
@@ -768,8 +765,6 @@
 
       path = tmp_list->data;
 
-      printf ("Getting info for %s\n", (char *) path);
-
       info = gtk_file_folder_get_info (chooser_entry->current_folder,
 				       path,
 				       NULL); /* NULL-GError */
@@ -786,8 +781,6 @@
 			      PATH_COLUMN, path,
 			      -1);
 
-	  printf ("Completion store += \"%s\"\n", display_name);
-
 	  gtk_file_info_free (info);
           g_free (display_name);
 	}
@@ -800,8 +793,6 @@
 
   gtk_entry_completion_set_model (gtk_entry_get_completion (GTK_ENTRY (chooser_entry)),
 				  GTK_TREE_MODEL (chooser_entry->completion_store));
-
-  printf ("Finished populating completion store\n");
 }
 
 /* When we finish loading the current folder, this function should get called to



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]