diff options
author | David Bordoley <bordoley@msu.edu> | 2003-04-24 11:51:26 +0800 |
---|---|---|
committer | Dave Bordoley <Bordoley@src.gnome.org> | 2003-04-24 11:51:26 +0800 |
commit | 5868173118fc790b7371a4bac8511358db7438bd (patch) | |
tree | 091de4f174f044812ce04913c8852c8673fd26a2 /embed/mozilla/FilePicker.h | |
parent | 8c83ceb4776c927353d7a235290c1fc2f9f34b1f (diff) | |
download | gsoc2013-epiphany-5868173118fc790b7371a4bac8511358db7438bd.tar gsoc2013-epiphany-5868173118fc790b7371a4bac8511358db7438bd.tar.gz gsoc2013-epiphany-5868173118fc790b7371a4bac8511358db7438bd.tar.bz2 gsoc2013-epiphany-5868173118fc790b7371a4bac8511358db7438bd.tar.lz gsoc2013-epiphany-5868173118fc790b7371a4bac8511358db7438bd.tar.xz gsoc2013-epiphany-5868173118fc790b7371a4bac8511358db7438bd.tar.zst gsoc2013-epiphany-5868173118fc790b7371a4bac8511358db7438bd.zip |
Always save a page's content if there i content to be saved. Remove the
2003-04-23 David Bordoley <bordoley@msu.edu>
* 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 <chpe+gnomebugz@stud.uni-saarland.de>
Diffstat (limited to 'embed/mozilla/FilePicker.h')
-rw-r--r-- | embed/mozilla/FilePicker.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/embed/mozilla/FilePicker.h b/embed/mozilla/FilePicker.h index 8f8fdf571..c478ce7a1 100644 --- a/embed/mozilla/FilePicker.h +++ b/embed/mozilla/FilePicker.h @@ -52,11 +52,9 @@ class GFilePicker : public nsIFilePicker NS_DECL_NSIFILEPICKER enum { returnOK = nsIFilePicker::returnOK, returnCancel = nsIFilePicker::returnCancel, - returnReplace = nsIFilePicker::returnReplace, - returnOKSaveContent = 256 }; + returnReplace = nsIFilePicker::returnReplace }; - GFilePicker(PRBool aShowContentCheck = PR_FALSE, - FileFormat *aFileFormats = nsnull); + GFilePicker(FileFormat *aFileFormats = nsnull); virtual ~GFilePicker(); /* additional members */ @@ -80,12 +78,9 @@ class GFilePicker : public nsIFilePicker PRInt16 mMode; - PRBool mShowContentCheck; - GtkWidget *mParentWidget; GtkWidget *mFileSelector; GtkWidget *mFormatChooser; - GtkWidget *mSaveContentCheck; FileFormat *mFileFormats; }; |