aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-01-17 02:22:18 +0800
committerChristian Persch <chpe@src.gnome.org>2004-01-17 02:22:18 +0800
commit56e5547df0cf98d29f556adacb41c51fb42f9da5 (patch)
treec9943a75a21c86a0da9f18567b4629c332e240a7 /src
parent89bcba7510d20c4fd2fe8f4df70be332d358c7da (diff)
downloadgsoc2013-epiphany-56e5547df0cf98d29f556adacb41c51fb42f9da5.tar
gsoc2013-epiphany-56e5547df0cf98d29f556adacb41c51fb42f9da5.tar.gz
gsoc2013-epiphany-56e5547df0cf98d29f556adacb41c51fb42f9da5.tar.bz2
gsoc2013-epiphany-56e5547df0cf98d29f556adacb41c51fb42f9da5.tar.lz
gsoc2013-epiphany-56e5547df0cf98d29f556adacb41c51fb42f9da5.tar.xz
gsoc2013-epiphany-56e5547df0cf98d29f556adacb41c51fb42f9da5.tar.zst
gsoc2013-epiphany-56e5547df0cf98d29f556adacb41c51fb42f9da5.zip
Use gtk_file_chooser_get_filename() instead of
2004-01-16 Christian Persch <chpe@cvs.gnome.org> * 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.
Diffstat (limited to 'src')
-rw-r--r--src/prefs-dialog.c2
1 files changed, 1 insertions, 1 deletions
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;