diff options
author | Christian Persch <chpe@src.gnome.org> | 2007-10-28 21:08:16 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2007-10-28 21:08:16 +0800 |
commit | a8580644cdf7ae694f89957e595b145e849d946f (patch) | |
tree | df99f3e34e0c22c8a752c8b5a5a635e0493f31c1 /src | |
parent | 38451480082fbd0c3f13fee6e782861db2a7b26c (diff) | |
download | gsoc2013-epiphany-a8580644cdf7ae694f89957e595b145e849d946f.tar gsoc2013-epiphany-a8580644cdf7ae694f89957e595b145e849d946f.tar.gz gsoc2013-epiphany-a8580644cdf7ae694f89957e595b145e849d946f.tar.bz2 gsoc2013-epiphany-a8580644cdf7ae694f89957e595b145e849d946f.tar.lz gsoc2013-epiphany-a8580644cdf7ae694f89957e595b145e849d946f.tar.xz gsoc2013-epiphany-a8580644cdf7ae694f89957e595b145e849d946f.tar.zst gsoc2013-epiphany-a8580644cdf7ae694f89957e595b145e849d946f.zip |
Remove EphyTab.
svn path=/trunk/; revision=7583
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-extensions-manager.c | 22 |
1 files changed, 11 insertions, 11 deletions
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); } |