diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-02-17 20:03:25 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-02-17 20:03:25 +0800 |
commit | 33d18744189f4ee0c8048d616f055998c7c18c8a (patch) | |
tree | 8c89997865d09b692400c59a540c1314e943d31e /src/ephy-extension.c | |
parent | 1a0ac68966012e2cd8df28cb31b3f6c98bb5dc26 (diff) | |
download | gsoc2013-epiphany-33d18744189f4ee0c8048d616f055998c7c18c8a.tar gsoc2013-epiphany-33d18744189f4ee0c8048d616f055998c7c18c8a.tar.gz gsoc2013-epiphany-33d18744189f4ee0c8048d616f055998c7c18c8a.tar.bz2 gsoc2013-epiphany-33d18744189f4ee0c8048d616f055998c7c18c8a.tar.lz gsoc2013-epiphany-33d18744189f4ee0c8048d616f055998c7c18c8a.tar.xz gsoc2013-epiphany-33d18744189f4ee0c8048d616f055998c7c18c8a.tar.zst gsoc2013-epiphany-33d18744189f4ee0c8048d616f055998c7c18c8a.zip |
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-extension.c')
-rw-r--r-- | src/ephy-extension.c | 10 |
1 files changed, 5 insertions, 5 deletions
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); } |