diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-01-17 02:22:18 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-01-17 02:22:18 +0800 |
commit | 56e5547df0cf98d29f556adacb41c51fb42f9da5 (patch) | |
tree | c9943a75a21c86a0da9f18567b4629c332e240a7 /src/prefs-dialog.c | |
parent | 89bcba7510d20c4fd2fe8f4df70be332d358c7da (diff) | |
download | gsoc2013-epiphany-56e5547df0cf98d29f556adacb41c51fb42f9da5.tar.gz 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/prefs-dialog.c')
-rw-r--r-- | src/prefs-dialog.c | 2 |
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; |