From 33d18744189f4ee0c8048d616f055998c7c18c8a Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Tue, 17 Feb 2004 12:03:25 +0000 Subject: s/EphyExtensionClass/EphyExtensionIface/g 2004-02-17 Christian Persch * 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 --- src/ephy-extension.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/ephy-extension.c') diff --git a/src/ephy-extension.c b/src/ephy-extension.c index a4022b67d..1caf581b7 100644 --- a/src/ephy-extension.c +++ b/src/ephy-extension.c @@ -30,7 +30,7 @@ ephy_extension_get_type (void) { static const GTypeInfo our_info = { - sizeof (EphyExtensionClass), + sizeof (EphyExtensionIface), NULL, NULL, }; @@ -47,14 +47,14 @@ void ephy_extension_attach_window (EphyExtension *extension, EphyWindow *window) { - EphyExtensionClass *class = EPHY_EXTENSION_GET_CLASS (extension); - class->attach_window (extension, window); + EphyExtensionIface *iface = EPHY_EXTENSION_GET_IFACE (extension); + iface->attach_window (extension, window); } void ephy_extension_detach_window (EphyExtension *extension, EphyWindow *window) { - EphyExtensionClass *class = EPHY_EXTENSION_GET_CLASS (extension); - class->detach_window (extension, window); + EphyExtensionIface *iface = EPHY_EXTENSION_GET_IFACE (extension); + iface->detach_window (extension, window); } -- cgit v1.2.3