aboutsummaryrefslogtreecommitdiffstats
path: root/embed/mozilla/ExternalProtocolService.cpp
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2003-12-15 00:19:40 +0800
committerChristian Persch <chpe@src.gnome.org>2003-12-15 00:19:40 +0800
commitdeab0d1c914913ae0615eec1cd1dc170255275a5 (patch)
treeda652af5a61920e256db92e2aa8a1d22bfebac7d /embed/mozilla/ExternalProtocolService.cpp
parentf21911f22afd1bb0838010ac61fe3c3297657098 (diff)
downloadgsoc2013-epiphany-deab0d1c914913ae0615eec1cd1dc170255275a5.tar
gsoc2013-epiphany-deab0d1c914913ae0615eec1cd1dc170255275a5.tar.gz
gsoc2013-epiphany-deab0d1c914913ae0615eec1cd1dc170255275a5.tar.bz2
gsoc2013-epiphany-deab0d1c914913ae0615eec1cd1dc170255275a5.tar.lz
gsoc2013-epiphany-deab0d1c914913ae0615eec1cd1dc170255275a5.tar.xz
gsoc2013-epiphany-deab0d1c914913ae0615eec1cd1dc170255275a5.tar.zst
gsoc2013-epiphany-deab0d1c914913ae0615eec1cd1dc170255275a5.zip
Adapt to changed mozilla APIs for 1.6. (Ported from HEAD).
2003-12-14 Christian Persch <chpe@cvs.gnome.org> * NEWS: * configure.in: * embed/mozilla/EphyEventListener.cpp: * embed/mozilla/EphyWrapper.cpp: * embed/mozilla/EventContext.cpp: * embed/mozilla/ExternalProtocolService.cpp: * embed/mozilla/MozRegisterComponents.cpp: * embed/mozilla/mozilla-embed-persist.cpp: * embed/mozilla/mozilla-embed-single.cpp: * src/ephy-window.c: (show_embed_popup): Adapt to changed mozilla APIs for 1.6. (Ported from HEAD).
Diffstat (limited to 'embed/mozilla/ExternalProtocolService.cpp')
-rw-r--r--embed/mozilla/ExternalProtocolService.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/embed/mozilla/ExternalProtocolService.cpp b/embed/mozilla/ExternalProtocolService.cpp
index be5dfdee2..f8d9a008c 100644
--- a/embed/mozilla/ExternalProtocolService.cpp
+++ b/embed/mozilla/ExternalProtocolService.cpp
@@ -17,9 +17,11 @@
*/
#ifdef HAVE_CONFIG_H
-#include <config.h>
+#include "config.h"
#endif
+#if MOZILLA_SNAPSHOT < 12
+
#include <gtk/gtk.h>
#include <libgnome/gnome-exec.h>
#include <libgnome/gnome-i18n.h>
@@ -155,3 +157,5 @@ NS_IMETHODIMP GExternalProtocolService::LoadUrl(nsIURI *aURL)
return NS_OK;
}
+
+#endif /* MOZILLA_SNAPSHOT < 12 */