diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-04-26 20:01:39 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-04-26 20:01:39 +0800 |
commit | cf8d507e4c6272a5e3f1b2a65724f1938d7d246d (patch) | |
tree | 9e53ce6bfc5eab160d37fb094b99bb4df5bdd862 /embed/mozilla/ContentHandler.h | |
parent | dbf352aded24013b511267d19c82fa017846ea73 (diff) | |
download | gsoc2013-epiphany-cf8d507e4c6272a5e3f1b2a65724f1938d7d246d.tar gsoc2013-epiphany-cf8d507e4c6272a5e3f1b2a65724f1938d7d246d.tar.gz gsoc2013-epiphany-cf8d507e4c6272a5e3f1b2a65724f1938d7d246d.tar.bz2 gsoc2013-epiphany-cf8d507e4c6272a5e3f1b2a65724f1938d7d246d.tar.lz gsoc2013-epiphany-cf8d507e4c6272a5e3f1b2a65724f1938d7d246d.tar.xz gsoc2013-epiphany-cf8d507e4c6272a5e3f1b2a65724f1938d7d246d.tar.zst gsoc2013-epiphany-cf8d507e4c6272a5e3f1b2a65724f1938d7d246d.zip |
Ged rid of all API checks which check for 1.8-only API, and introduce a
2005-04-26 Christian Persch <chpe@cvs.gnome.org>
* configure.ac:
Ged rid of all API checks which check for 1.8-only API, and introduce
a Gecko version check instead.
* embed/mozilla/ContentHandler.cpp:
* embed/mozilla/ContentHandler.h:
* embed/mozilla/EventContext.cpp:
* embed/mozilla/GlobalHistory.cpp:
* embed/mozilla/GtkNSSKeyPairDialogs.cpp:
* embed/mozilla/MozDownload.cpp:
* embed/mozilla/MozDownload.h:
* embed/mozilla/mozilla-download.cpp:
Fix for mozilla API change, and use the new HAVE_GECKO_1_8 define
where appropriate.
Diffstat (limited to 'embed/mozilla/ContentHandler.h')
-rw-r--r-- | embed/mozilla/ContentHandler.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/embed/mozilla/ContentHandler.h b/embed/mozilla/ContentHandler.h index 1df7e37cf..7498a80f0 100644 --- a/embed/mozilla/ContentHandler.h +++ b/embed/mozilla/ContentHandler.h @@ -22,8 +22,6 @@ #ifndef CONTENT_HANDLER_H #define CONTENT_HANDLER_H -#include "config.h" - #include "ephy-file-helpers.h" #include <libgnomevfs/gnome-vfs-mime-handlers.h> @@ -79,7 +77,7 @@ class GContentHandler : public nsIHelperAppLauncherDialog EphyMimePermission mPermission; nsEmbedCString mUrl; -#ifdef MOZ_NSIMIMEINFO_NSACSTRING_ +#ifdef HAVE_GECKO_1_8 nsEmbedCString mMimeType; #else char *mMimeType; |