aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-extension.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ephy-extension.c')
-rw-r--r--src/ephy-extension.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ephy-extension.c b/src/ephy-extension.c
index 8852ab12d..1f92a1e58 100644
--- a/src/ephy-extension.c
+++ b/src/ephy-extension.c
@@ -70,23 +70,23 @@ ephy_extension_detach_window (EphyExtension *extension,
void
ephy_extension_attach_tab (EphyExtension *extension,
EphyWindow *window,
- EphyTab *tab)
+ EphyEmbed *embed)
{
EphyExtensionIface *iface = EPHY_EXTENSION_GET_IFACE (extension);
if (iface->attach_tab)
{
- iface->attach_tab (extension, window, tab);
+ iface->attach_tab (extension, window, embed);
}
}
void
ephy_extension_detach_tab (EphyExtension *extension,
EphyWindow *window,
- EphyTab *tab)
+ EphyEmbed *embed)
{
EphyExtensionIface *iface = EPHY_EXTENSION_GET_IFACE (extension);
if (iface->detach_tab)
{
- iface->detach_tab (extension, window, tab);
+ iface->detach_tab (extension, window, embed);
}
}