diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-12-06 07:11:06 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-12-06 07:11:06 +0800 |
commit | 7e8b35f93d2ef0f08fdf6b9ef889fb913091a61f (patch) | |
tree | 0a5b76de7cd8ea023ea60b18a52428e83621094c /src/ephy-tab.c | |
parent | 72422dbaef675fa8a016ce7c5b4b801e7d478c23 (diff) | |
download | gsoc2013-epiphany-7e8b35f93d2ef0f08fdf6b9ef889fb913091a61f.tar.gz gsoc2013-epiphany-7e8b35f93d2ef0f08fdf6b9ef889fb913091a61f.tar.zst gsoc2013-epiphany-7e8b35f93d2ef0f08fdf6b9ef889fb913091a61f.zip |
Misc cleanups. Remove a duplicated signal from EphyEmbed.
2003-12-06 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-embed-shell.c: (ephy_embed_shell_get_type),
(ephy_embed_shell_finalize), (ephy_embed_shell_get_favicon_cache),
(ephy_embed_shell_get_global_history),
(ephy_embed_shell_get_downloader_view), (load_mime_from_xml),
(ephy_embed_shell_init), (ephy_embed_shell_class_init):
* embed/ephy-embed-shell.h:
* embed/ephy-embed.c: (ephy_embed_base_init):
* embed/ephy-embed.h:
* src/ephy-tab.c: (ephy_tab_init):
Misc cleanups. Remove a duplicated signal from EphyEmbed.
Diffstat (limited to 'src/ephy-tab.c')
-rw-r--r-- | src/ephy-tab.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/ephy-tab.c b/src/ephy-tab.c index 960090bd8..d0ce85908 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -911,16 +911,6 @@ ephy_tab_destroy_brsr_cb (EphyEmbed *embed, EphyTab *tab) ephy_window_remove_tab (tab->priv->window, tab); } -static gint -ephy_tab_open_uri_cb (EphyEmbed *embed, const char *uri, - EphyTab *tab) -{ - LOG ("ephy_tab_open_uri_cb %s", uri) - - /* FIXME: what is this function supposed to do ? */ - return FALSE; -} - static void ephy_tab_size_to_cb (EphyEmbed *embed, gint width, gint height, EphyTab *tab) @@ -1112,9 +1102,6 @@ ephy_tab_init (EphyTab *tab) g_signal_connect (embed, "destroy_browser", G_CALLBACK (ephy_tab_destroy_brsr_cb), tab); - g_signal_connect (embed, "ge_open_uri", - G_CALLBACK (ephy_tab_open_uri_cb), - tab); g_signal_connect (embed, "size_to", G_CALLBACK (ephy_tab_size_to_cb), tab); |