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-single.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'embed/ephy-embed-single.c') diff --git a/embed/ephy-embed-single.c b/embed/ephy-embed-single.c index 071ed1b48..dfeaf4c44 100644 --- a/embed/ephy-embed-single.c +++ b/embed/ephy-embed-single.c @@ -255,14 +255,13 @@ ephy_embed_single_show_file_picker (EphyEmbedSingle *shell, const char *file, FilePickerMode mode, char **ret_fullpath, - gboolean *ret_save_content, FileFormat *file_formats, int *ret_file_format) { EphyEmbedSingleClass *klass = EPHY_EMBED_SINGLE_GET_CLASS (shell); return klass->show_file_picker (shell, parentWidget, title, directory, file, mode, - ret_fullpath, ret_save_content, + ret_fullpath, file_formats, ret_file_format); } -- cgit