diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-07-01 00:31:59 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-07-01 00:31:59 +0800 |
commit | ece5e036c19540f6973b510bd7d108bc3c0ad742 (patch) | |
tree | 0b7c349967a71d928c30b2da5385036bb03aeac0 /src | |
parent | 5f1869901b3705de47918f0f137762acfd773286 (diff) | |
download | gsoc2013-epiphany-ece5e036c19540f6973b510bd7d108bc3c0ad742.tar gsoc2013-epiphany-ece5e036c19540f6973b510bd7d108bc3c0ad742.tar.gz gsoc2013-epiphany-ece5e036c19540f6973b510bd7d108bc3c0ad742.tar.bz2 gsoc2013-epiphany-ece5e036c19540f6973b510bd7d108bc3c0ad742.tar.lz gsoc2013-epiphany-ece5e036c19540f6973b510bd7d108bc3c0ad742.tar.xz gsoc2013-epiphany-ece5e036c19540f6973b510bd7d108bc3c0ad742.tar.zst gsoc2013-epiphany-ece5e036c19540f6973b510bd7d108bc3c0ad742.zip |
Remove some unused code
2003-06-30 Marco Pesenti Gritti <marco@it.gnome.org>
* embed/ephy-embed-dialog.c: (ephy_embed_dialog_get_embed):
* embed/ephy-embed-shell.c: (ephy_embed_shell_init),
(ephy_embed_shell_get_favicon_cache):
* embed/ephy-embed-shell.h:
* embed/print-dialog.c: (print_dialog_print),
(print_dialog_preview):
* src/Makefile.am:
* src/ephy-tab.c: (ephy_tab_destroy_brsr_cb), (ephy_tab_init):
Remove some unused code
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 4 | ||||
-rw-r--r-- | src/ephy-tab.c | 5 |
2 files changed, 2 insertions, 7 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 2798049ba..d8041ce11 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -49,10 +49,10 @@ epiphany_bin_SOURCES = \ ephy-encoding-menu.h \ ephy-favicon-action.c \ ephy-favicon-action.h \ - ephy-go-action.c \ - ephy-go-action.h \ ephy-favorites-menu.c \ ephy-favorites-menu.h \ + ephy-go-action.c \ + ephy-go-action.h \ ephy-history-window.c \ ephy-history-window.h \ ephy-location-action.c \ diff --git a/src/ephy-tab.c b/src/ephy-tab.c index 273f8440c..85f4bceb9 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -813,9 +813,6 @@ ephy_tab_destroy_brsr_cb (EphyEmbed *embed, EphyTab *tab) g_return_if_fail (tab->priv->window != NULL); ephy_window_remove_tab (tab->priv->window, tab); - - ephy_embed_shell_remove_embed (EPHY_EMBED_SHELL (ephy_shell), - tab->priv->embed); } static gint @@ -954,8 +951,6 @@ ephy_tab_init (EphyTab *tab) tab->priv->address_expire = TAB_ADDRESS_EXPIRE_NOW; tab->priv->embed = ephy_embed_new (G_OBJECT(single)); - ephy_embed_shell_add_embed (EPHY_EMBED_SHELL (ephy_shell), - tab->priv->embed); embed = G_OBJECT (tab->priv->embed); embed_widget = G_OBJECT (tab->priv->embed); |