diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-07-18 00:06:04 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-07-18 00:06:04 +0800 |
commit | 056e78ca2904f2a8f7eaa200098f36f0029c4425 (patch) | |
tree | f470b02bc5cd83049fee08d65b6f5f37e13bd344 /embed/mozilla/MozRegisterComponents.cpp | |
parent | 23c1956430766dd72294ca2ca5f79e199ad7ed3b (diff) | |
download | gsoc2013-epiphany-056e78ca2904f2a8f7eaa200098f36f0029c4425.tar gsoc2013-epiphany-056e78ca2904f2a8f7eaa200098f36f0029c4425.tar.gz gsoc2013-epiphany-056e78ca2904f2a8f7eaa200098f36f0029c4425.tar.bz2 gsoc2013-epiphany-056e78ca2904f2a8f7eaa200098f36f0029c4425.tar.lz gsoc2013-epiphany-056e78ca2904f2a8f7eaa200098f36f0029c4425.tar.xz gsoc2013-epiphany-056e78ca2904f2a8f7eaa200098f36f0029c4425.tar.zst gsoc2013-epiphany-056e78ca2904f2a8f7eaa200098f36f0029c4425.zip |
A embed/mozilla/EphyAboutModule.cpp: A embed/mozilla/EphyAboutModule.h: R
2005-07-17 Christian Persch <chpe@cvs.gnome.org>
A embed/mozilla/EphyAboutModule.cpp:
A embed/mozilla/EphyAboutModule.h:
R embed/mozilla/EphyProtocolHandler.cpp:
R embed/mozilla/EphyProtocolHandler.h:
* embed/mozilla/Makefile.am:
* embed/mozilla/MozRegisterComponents.cpp:
* po/POTFILES.in:
Yet another mozilla API change.
* src/bookmarks/ephy-bookmarks.c:
(ephy_bookmarks_get_smart_bookmark_width):
Remove stray g_print, and clamp entry width to sane values.
Diffstat (limited to 'embed/mozilla/MozRegisterComponents.cpp')
-rw-r--r-- | embed/mozilla/MozRegisterComponents.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/embed/mozilla/MozRegisterComponents.cpp b/embed/mozilla/MozRegisterComponents.cpp index f52226616..bc7ee4709 100644 --- a/embed/mozilla/MozRegisterComponents.cpp +++ b/embed/mozilla/MozRegisterComponents.cpp @@ -43,7 +43,7 @@ #endif #ifdef HAVE_GECKO_1_8 -#include "EphyProtocolHandler.h" +#include "EphyAboutModule.h" #endif #include <nsMemory.h> @@ -76,7 +76,7 @@ NS_GENERIC_FACTORY_CONSTRUCTOR(GtkNSSSecurityWarningDialogs) #endif #ifdef HAVE_GECKO_1_8 -NS_GENERIC_FACTORY_CONSTRUCTOR(EphyProtocolHandler) +NS_GENERIC_FACTORY_CONSTRUCTOR(EphyAboutModule) #endif /* class information */ @@ -207,16 +207,16 @@ static const nsModuleComponentInfo sAppComps[] = { }, #ifdef HAVE_GECKO_1_8 { - EPHY_ABOUT_CLASSNAME, - EPHY_PROTOCOL_HANDLER_CID, - EPHY_ABOUT_CONTRACTID, - EphyProtocolHandlerConstructor + EPHY_ABOUT_EPIPHANY_CLASSNAME, + EPHY_ABOUT_MODULE_CID, + EPHY_ABOUT_EPIPHANY_CONTRACTID, + EphyAboutModuleConstructor }, { - EPHY_PROTOCOL_HANDLER_CLASSNAME, - EPHY_PROTOCOL_HANDLER_CID, - EPHY_PROTOCOL_HANDLER_CONTRACTID, - EphyProtocolHandlerConstructor + EPHY_ABOUT_NETERROR_CLASSNAME, + EPHY_ABOUT_MODULE_CID, + EPHY_ABOUT_NETERROR_CONTRACTID, + EphyAboutModuleConstructor }, #endif }; |