summaryrefslogtreecommitdiff
path: root/src/ephy-extensions-manager.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-02-17 12:03:25 +0000
committerChristian Persch <chpe@src.gnome.org>2004-02-17 12:03:25 +0000
commit33d18744189f4ee0c8048d616f055998c7c18c8a (patch)
tree8c89997865d09b692400c59a540c1314e943d31e /src/ephy-extensions-manager.c
parent1a0ac68966012e2cd8df28cb31b3f6c98bb5dc26 (diff)
downloadepiphany-33d18744189f4ee0c8048d616f055998c7c18c8a.tar.gz
s/EphyExtensionClass/EphyExtensionIface/g
2004-02-17 Christian Persch <chpe@cvs.gnome.org> * src/ephy-extension.c: (ephy_extension_get_type), (ephy_extension_attach_window), (ephy_extension_detach_window): * src/ephy-extension.h: * src/ephy-extensions-manager.c: (ephy_extensions_manager_iface_init): * src/ephy-session.c: (ephy_session_iface_init): s/EphyExtensionClass/EphyExtensionIface/g
Diffstat (limited to 'src/ephy-extensions-manager.c')
-rw-r--r--src/ephy-extensions-manager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-extensions-manager.c b/src/ephy-extensions-manager.c
index 9dc4d6842..f8e283e09 100644
--- a/src/ephy-extensions-manager.c
+++ b/src/ephy-extensions-manager.c
@@ -42,7 +42,7 @@ struct EphyExtensionsManagerPrivate
static GObjectClass *parent_class = NULL;
static void ephy_extensions_manager_class_init (EphyExtensionsManagerClass *klass);
-static void ephy_extensions_manager_iface_init (EphyExtensionClass *iface);
+static void ephy_extensions_manager_iface_init (EphyExtensionIface *iface);
static void ephy_extensions_manager_init (EphyExtensionsManager *manager);
GType
@@ -233,7 +233,7 @@ impl_detach_window (EphyExtension *extension,
}
static void
-ephy_extensions_manager_iface_init (EphyExtensionClass *iface)
+ephy_extensions_manager_iface_init (EphyExtensionIface *iface)
{
iface->attach_window = impl_attach_window;
iface->detach_window = impl_detach_window;