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 | |
parent | 89bcba7510d20c4fd2fe8f4df70be332d358c7da (diff) | |
download | gsoc2013-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.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/prefs-dialog.c | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,5 +1,12 @@ 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. + +2004-01-16 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-window.c: (menu_item_select_cb), (menu_item_deselect_cb), (disconnect_proxy_cb), (connect_proxy_cb), (setup_ui_manager), (ephy_window_init): 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; |