diff options
Diffstat (limited to 'embed/mozilla/MozDownload.cpp')
-rw-r--r-- | embed/mozilla/MozDownload.cpp | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/embed/mozilla/MozDownload.cpp b/embed/mozilla/MozDownload.cpp index 2dd99e98d..4c60d424d 100644 --- a/embed/mozilla/MozDownload.cpp +++ b/embed/mozilla/MozDownload.cpp @@ -55,14 +55,11 @@ #include <libgnomevfs/gnome-vfs-utils.h> #include <glib/gi18n.h> -#include "nsIExternalHelperAppService.h" -#include "nsDirectoryServiceDefs.h" -#include "nsDirectoryServiceUtils.h" -#include "nsIRequest.h" -#include "nsIMIMEInfo.h" -#include "nsIFileURL.h" -#include "netCore.h" +#include <nsIFileURL.h> + +#ifdef ALLOW_PRIVATE_STRINGS #include "nsNetUtil.h" +#endif const char* const persistContractID = "@mozilla.org/embedding/browser/nsWebBrowserPersist;1"; @@ -110,7 +107,6 @@ MozDownload::Init(nsIURI *aSource, nsIURI *aTarget, const PRUnichar *aDisplayNam #endif { PRBool addToView = PR_TRUE; - nsresult rv; if (mEmbedPersist) { @@ -597,7 +593,7 @@ static char* GetFilePath (const char *filename) { char *path = NULL; - char *download_dir, *converted_dp, *expanded, *tmp; + char *download_dir, *converted_dp, *expanded; download_dir = eel_gconf_get_string (CONF_STATE_DOWNLOAD_DIR); |