diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2004-01-19 22:06:41 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2004-01-19 22:06:41 +0800 |
commit | dd0b02c40b5d202794d03299f2d190833b63bb22 (patch) | |
tree | 4e8dc109ed36ca01584e1a7d39d5649cc6adbd6e /embed/mozilla/MozDownload.h | |
parent | eaba78e8dfd1cdad90bed57cc536cbfe40a9509e (diff) | |
download | gsoc2013-epiphany-dd0b02c40b5d202794d03299f2d190833b63bb22.tar gsoc2013-epiphany-dd0b02c40b5d202794d03299f2d190833b63bb22.tar.gz gsoc2013-epiphany-dd0b02c40b5d202794d03299f2d190833b63bb22.tar.bz2 gsoc2013-epiphany-dd0b02c40b5d202794d03299f2d190833b63bb22.tar.lz gsoc2013-epiphany-dd0b02c40b5d202794d03299f2d190833b63bb22.tar.xz gsoc2013-epiphany-dd0b02c40b5d202794d03299f2d190833b63bb22.tar.zst gsoc2013-epiphany-dd0b02c40b5d202794d03299f2d190833b63bb22.zip |
Add a way to store paths.
2004-01-19 Marco Pesenti Gritti <marco@gnome.org>
* lib/eel-gconf-extensions.c: (tilde_compress),
(eel_gconf_set_path):
* lib/eel-gconf-extensions.h:
Add a way to store paths.
* embed/mozilla/ContentHandler.cpp:
* embed/mozilla/ContentHandler.h:
* embed/mozilla/MozDownload.cpp:
* embed/mozilla/MozDownload.h:
Actually save the file in downloads dir and then
open it. It doesnt seem to open it but it's prolly
a gnome-vfs bug.
* src/prefs-dialog.c: (get_download_button_label),
(download_path_response_cb):
Simplify the label logic using ~.
Diffstat (limited to 'embed/mozilla/MozDownload.h')
-rw-r--r-- | embed/mozilla/MozDownload.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/embed/mozilla/MozDownload.h b/embed/mozilla/MozDownload.h index 9a2a94d53..084a90f8b 100644 --- a/embed/mozilla/MozDownload.h +++ b/embed/mozilla/MozDownload.h @@ -56,6 +56,7 @@ #include "downloader-view.h" #include "ephy-download.h" #include "ephy-embed-shell.h" +#include <libgnomevfs/gnome-vfs-mime-handlers.h> /* MozDownload Holds information used to display a single download in the UI. This object is @@ -111,6 +112,7 @@ public: protected: nsCOMPtr<nsIURI> mSource; nsCOMPtr<nsILocalFile> mDestination; + nsCOMPtr<nsIMIMEInfo> mMIMEInfo; PRInt64 mLastUpdate; PRInt64 mStartTime; PRInt64 mElapsed; |