From a8580644cdf7ae694f89957e595b145e849d946f Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Sun, 28 Oct 2007 13:08:16 +0000 Subject: Remove EphyTab. svn path=/trunk/; revision=7583 --- src/ephy-extensions-manager.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src/ephy-extensions-manager.c') diff --git a/src/ephy-extensions-manager.c b/src/ephy-extensions-manager.c index d91726d46..7d549a697 100644 --- a/src/ephy-extensions-manager.c +++ b/src/ephy-extensions-manager.c @@ -680,7 +680,7 @@ attach_window (EphyWindow *window, for (l = tabs; l; l = l->next) { ephy_extension_attach_tab (extension, window, - EPHY_TAB (l->data)); + EPHY_EMBED (l->data)); } g_list_free (tabs); } @@ -743,7 +743,7 @@ detach_window (EphyWindow *window, for (l = tabs; l; l = l->next) { ephy_extension_detach_tab (extension, window, - EPHY_TAB (l->data)); + EPHY_EMBED (l->data)); } g_list_free (tabs); @@ -1235,7 +1235,7 @@ impl_detach_window (EphyExtension *extension, for (l = tabs; l; l = l->next) { ephy_extension_detach_tab (extension, window, - EPHY_TAB (l->data)); + EPHY_EMBED (l->data)); } g_list_free (tabs); @@ -1249,40 +1249,40 @@ impl_detach_window (EphyExtension *extension, static void impl_attach_tab (EphyExtension *extension, EphyWindow *window, - EphyTab *tab) + EphyEmbed *embed) { EphyExtensionsManager *manager = EPHY_EXTENSIONS_MANAGER (extension); GList *l; - LOG ("Attach window %p tab %p", window, tab); + LOG ("Attach window %p embed %p", window, embed); for (l = manager->priv->extensions; l; l = l->next) { ephy_extension_attach_tab (EPHY_EXTENSION (l->data), - window, tab); + window, embed); } } static void impl_detach_tab (EphyExtension *extension, EphyWindow *window, - EphyTab *tab) + EphyEmbed *embed) { EphyExtensionsManager *manager = EPHY_EXTENSIONS_MANAGER (extension); GList *l; - LOG ("Detach window %p tab %p", window, tab); + LOG ("Detach window %p embed %p", window, embed); g_object_ref (window); - g_object_ref (tab); + g_object_ref (embed); for (l = manager->priv->extensions; l; l = l->next) { ephy_extension_detach_tab (EPHY_EXTENSION (l->data), - window, tab); + window, embed); } - g_object_unref (tab); + g_object_unref (embed); g_object_unref (window); } -- cgit v1.2.3