diff options
author | Matthias Clasen <maclas@gmx.de> | 2003-11-27 23:08:51 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2003-11-27 23:08:51 +0000 |
commit | a2ea36c0554fb2c8fed35f254467af0c688aa2be (patch) | |
tree | 47604652bf67f2b7be1b52a52ccd58e76a05fa92 /gtk/gtkfilechooserentry.c | |
parent | c9fca5845809227c5b0acd2cb701e944186d788b (diff) | |
download | gtk+-a2ea36c0554fb2c8fed35f254467af0c688aa2be.tar.gz |
Remove debug g_print()s.
Fri Nov 28 00:09:10 2003 Matthias Clasen <maclas@gmx.de>
* gtk/gtkfilechooserentry.c: Remove debug g_print()s.
Diffstat (limited to 'gtk/gtkfilechooserentry.c')
-rw-r--r-- | gtk/gtkfilechooserentry.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gtk/gtkfilechooserentry.c b/gtk/gtkfilechooserentry.c index 3111dbc509..7b1a3eb267 100644 --- a/gtk/gtkfilechooserentry.c +++ b/gtk/gtkfilechooserentry.c @@ -244,8 +244,6 @@ completion_idle_callback (GtkFileChooserEntry *chooser_entry) gchar *common_prefix = NULL; GtkFilePath *unique_path = NULL; - g_print ("completion_idle_callback()\n"); - chooser_entry->completion_idle = NULL; if (strcmp (chooser_entry->file_part, "") == 0) @@ -264,7 +262,6 @@ completion_idle_callback (GtkFileChooserEntry *chooser_entry) NULL); /* NULL-GError */ chooser_entry->in_change = TRUE; - g_print ("Clearing list and filling it\n"); gtk_list_store_clear (chooser_entry->completion_store); for (tmp_list = child_paths; tmp_list; tmp_list = tmp_list->next) @@ -315,7 +312,6 @@ completion_idle_callback (GtkFileChooserEntry *chooser_entry) gtk_file_info_free (info); } } - g_print ("List filled\n"); chooser_entry->in_change = FALSE; if (unique_path) @@ -387,10 +383,6 @@ gtk_file_chooser_entry_do_insert_text (GtkEditable *editable, GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (editable); char *tmp; - tmp = g_strndup (new_text, new_text_length); - g_print ("gtk_file_chooser_entry_do_insert_text (%s)\n", tmp); - g_free (tmp); - parent_editable_iface->do_insert_text (editable, new_text, new_text_length, position); if (!chooser_entry->in_change && @@ -432,8 +424,6 @@ gtk_file_chooser_entry_changed (GtkEditable *editable) GtkFilePath *folder_path; gchar *file_part; - g_print ("gtk_file_chooser_entry_changed ()\n"); - text = gtk_entry_get_text (GTK_ENTRY (editable)); if (!chooser_entry->file_system || |