aboutsummaryrefslogtreecommitdiffstats
path: root/embed/print-dialog.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@ximian.com>2004-03-30 00:14:12 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2004-03-30 00:14:12 +0800
commit87b1f025f2eaacaf1eaaa259018adddb4a9298ab (patch)
tree6920d89f239dfdcce2581a4f7f1920b7ce503617 /embed/print-dialog.c
parent6c4542fb9b2e2c263765db7da0c1c8e866a8e327 (diff)
downloadgsoc2013-epiphany-87b1f025f2eaacaf1eaaa259018adddb4a9298ab.tar
gsoc2013-epiphany-87b1f025f2eaacaf1eaaa259018adddb4a9298ab.tar.gz
gsoc2013-epiphany-87b1f025f2eaacaf1eaaa259018adddb4a9298ab.tar.bz2
gsoc2013-epiphany-87b1f025f2eaacaf1eaaa259018adddb4a9298ab.tar.lz
gsoc2013-epiphany-87b1f025f2eaacaf1eaaa259018adddb4a9298ab.tar.xz
gsoc2013-epiphany-87b1f025f2eaacaf1eaaa259018adddb4a9298ab.tar.zst
gsoc2013-epiphany-87b1f025f2eaacaf1eaaa259018adddb4a9298ab.zip
Fixes #138263.
2004-03-29 Federico Mena Quintero <federico@ximian.com> Fixes #138263. * lib/ephy-file-chooser.h: Remove EPHY_RESPONSE_OPEN and EPHY_RESPONSE_SAVE; we'll use GTK_RESPONSE_ACCEPT instead. * lib/ephy-file-chooser.c (ephy_file_chooser_new): Use GTK_RESPONSE_ACCEPT rather than EPHY_RESPONSE_*. * embed/print-dialog.c (print_filechooser_response_cb): Likewise. * src/bookmarks/ephy-bookmarks-editor.c (import_from_file_response_cb): Likewise. * src/prefs-dialog.c (download_path_response_cb): Likewise. * src/window-commands.c (open_response_cb): Likewise. * embed/mozilla/ContentHandler.cpp (PromptForSaveToFile): Likewise. * embed/mozilla/EphyHeaderSniffer.cpp (filechooser_response_cb): Likewise. * embed/mozilla/FilePicker.cpp (Init): Likewise. (Show): Likewise.
Diffstat (limited to 'embed/print-dialog.c')
-rwxr-xr-xembed/print-dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/print-dialog.c b/embed/print-dialog.c
index 4fc54788c..224a75691 100755
--- a/embed/print-dialog.c
+++ b/embed/print-dialog.c
@@ -254,7 +254,7 @@ print_filechooser_response_cb (GtkDialog *fc,
int response,
EphyDialog *dialog)
{
- if (response == EPHY_RESPONSE_SAVE)
+ if (response == GTK_RESPONSE_ACCEPT)
{
char *filename;