From 56e5547df0cf98d29f556adacb41c51fb42f9da5 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Fri, 16 Jan 2004 18:22:18 +0000 Subject: Use gtk_file_chooser_get_filename() instead of 2004-01-16 Christian Persch * src/prefs-dialog.c: (download_path_response_cb): Use gtk_file_chooser_get_filename() instead of gtk_file_chooser_get_current_folder(). Fixes bug #131646. --- src/prefs-dialog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/prefs-dialog.c b/src/prefs-dialog.c index 5046aa267..76fc406ad 100644 --- a/src/prefs-dialog.c +++ b/src/prefs-dialog.c @@ -1276,7 +1276,7 @@ download_path_response_cb (GtkDialog *fc, gint response, EphyDialog *dialog) { char *dir; - dir = gtk_file_chooser_get_current_folder (GTK_FILE_CHOOSER (fc)); + dir = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (fc)); if (dir != NULL) { GtkWidget *button; -- cgit