diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/EphySingle.cpp | 4 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2003-11-25 Christian Persch <chpe@cvs.gnome.org> + + * embed/mozilla/EphySingle.cpp: + + Make it compile with mozilla < 1.5. + 2003-11-24 Xan Lopez <xan@masilla.org> * embed/downloader-view.c: (download_changed_cb): diff --git a/embed/mozilla/EphySingle.cpp b/embed/mozilla/EphySingle.cpp index 0963551de..2707f939d 100644 --- a/embed/mozilla/EphySingle.cpp +++ b/embed/mozilla/EphySingle.cpp @@ -28,11 +28,13 @@ #include "ephy-debug.h" #include <nsString.h> -#include <nsICookie2.h> #include <nsIURI.h> #include <nsIPermissionManager.h> #include <nsICookieManager.h> #include <nsIServiceManager.h> +#if MOZILLA_SNAPSHOT > 9 +#include <nsICookie2.h> +#endif NS_IMPL_ISUPPORTS1(EphySingle, nsIObserver) |