aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--embed/mozilla/EphySingle.cpp4
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 91fefcaaf..213ce58b6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)