From 5868173118fc790b7371a4bac8511358db7438bd Mon Sep 17 00:00:00 2001 From: David Bordoley Date: Thu, 24 Apr 2003 03:51:26 +0000 Subject: Always save a page's content if there i content to be saved. Remove the 2003-04-23 David Bordoley * embed/ephy-embed-single.c: (ephy_embed_single_show_file_picker): * embed/ephy-embed-single.h: * embed/ephy-embed-utils.c: (ephy_embed_utils_save): * embed/ephy-embed-utils.h: * embed/mozilla/FilePicker.cpp: (GFilePicker::GFilePicker), (GFilePicker::Show), (GFilePicker::HandleFilePickerR): * embed/mozilla/FilePicker.h: * embed/mozilla/mozilla-embed-persist.cpp: (impl_save): * embed/mozilla/mozilla-embed-single.cpp: (impl_show_file_picker): * src/window-commands.c: (window_cmd_file_open): Always save a page's content if there i content to be saved. Remove the checkbox from the save as dialog. Patch from Christian Persch --- embed/ephy-embed-utils.c | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'embed/ephy-embed-utils.c') diff --git a/embed/ephy-embed-utils.c b/embed/ephy-embed-utils.c index 33a8935ad..e564bb084 100644 --- a/embed/ephy-embed-utils.c +++ b/embed/ephy-embed-utils.c @@ -44,7 +44,8 @@ void ephy_embed_utils_save (GtkWidget *window, const char *default_dir_pref, - gboolean ask_dest, gboolean ask_content, + gboolean ask_dest, + gboolean with_content, EphyEmbedPersist *persist) { GnomeVFSURI *uri; @@ -57,7 +58,6 @@ ephy_embed_utils_save (GtkWidget *window, gresult ret; EphyEmbed *embed; EmbedPersistFlags flags; - gboolean content; EphyEmbedSingle *single; single = ephy_embed_shell_get_embed_single @@ -132,7 +132,6 @@ ephy_embed_utils_save (GtkWidget *window, (single, window, _("Select the destination filename"), dirName, fileName, modeSave, &retPath, - ask_content ? &content : NULL, NULL, NULL); } @@ -143,12 +142,8 @@ ephy_embed_utils_save (GtkWidget *window, retDir = gnome_vfs_uri_extract_dirname (uri); - if (ask_content && content) - { - flags |= EMBED_PERSIST_SAVE_CONTENT; - ephy_embed_persist_set_flags (persist, - flags); - } + if (with_content) flags |= EMBED_PERSIST_SAVE_CONTENT; + ephy_embed_persist_set_flags (persist, flags); ephy_embed_persist_set_dest (persist, retPath); -- cgit v1.2.3