diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/mozilla-embed-single.cpp | 5 |
2 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2004-07-03 Christian Persch <chpe@cvs.gnome.org> + + * embed/mozilla/mozilla-embed-single.cpp: + + Mozilla API change. + 2004-07-02 Christian Persch <chpe@cvs.gnome.org> * data/art/Makefile.am: diff --git a/embed/mozilla/mozilla-embed-single.cpp b/embed/mozilla/mozilla-embed-single.cpp index 5882b3fae..9556d8227 100644 --- a/embed/mozilla/mozilla-embed-single.cpp +++ b/embed/mozilla/mozilla-embed-single.cpp @@ -24,6 +24,7 @@ #endif #include "mozilla-embed-single.h" +#include "mozilla-version.h" #include "ephy-cookie-manager.h" #include "ephy-password-manager.h" @@ -589,7 +590,11 @@ impl_load_proxy_autoconf (EphyEmbedSingle *shell, do_GetService ("@mozilla.org/network/protocol-proxy-service;1"); if (!pps) return; +#if MOZILLA_CHECK_VERSION4 (1, 8, MOZILLA_ALPHA, 2) + pps->ConfigureFromPAC (nsEmbedCString (url)); +#else pps->ConfigureFromPAC (url); +#endif } static GList * |