diff options
author | Xan Lopez <xan@src.gnome.org> | 2007-11-14 07:15:57 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2007-11-14 07:15:57 +0800 |
commit | d6350b598732e34420261238b01d2bfb187349c1 (patch) | |
tree | 44ae47001b310b432adf9dcdc87bb0e729d28829 /embed/ephy-base-embed.c | |
parent | 68a134b7bbdf147afca4d3b2ba361c73155bbeba (diff) | |
download | gsoc2013-epiphany-d6350b598732e34420261238b01d2bfb187349c1.tar gsoc2013-epiphany-d6350b598732e34420261238b01d2bfb187349c1.tar.gz gsoc2013-epiphany-d6350b598732e34420261238b01d2bfb187349c1.tar.bz2 gsoc2013-epiphany-d6350b598732e34420261238b01d2bfb187349c1.tar.lz gsoc2013-epiphany-d6350b598732e34420261238b01d2bfb187349c1.tar.xz gsoc2013-epiphany-d6350b598732e34420261238b01d2bfb187349c1.tar.zst gsoc2013-epiphany-d6350b598732e34420261238b01d2bfb187349c1.zip |
Add icon-updated signal to EphyHistory.
Use it to update the bookmarks icon, as it was done in EphyTab before.
svn path=/trunk/; revision=7687
Diffstat (limited to 'embed/ephy-base-embed.c')
-rw-r--r-- | embed/ephy-base-embed.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/embed/ephy-base-embed.c b/embed/ephy-base-embed.c index 2ca7a1490..6b348c394 100644 --- a/embed/ephy-base-embed.c +++ b/embed/ephy-base-embed.c @@ -1190,7 +1190,6 @@ ephy_base_embed_set_icon_address (EphyBaseEmbed *embed, GObject *object = G_OBJECT (embed); EphyBaseEmbedPrivate *priv = embed->priv; EphyHistory *history; - /* EphyBookmarks *eb;*/ g_free (priv->icon_address); priv->icon_address = g_strdup (address); @@ -1205,10 +1204,6 @@ ephy_base_embed_set_icon_address (EphyBaseEmbed *embed, if (priv->icon_address) { history = EPHY_HISTORY (ephy_embed_shell_get_global_history (embed_shell)); ephy_history_set_icon (history, priv->address, priv->icon_address); - /* - eb = ephy_shell_get_bookmarks (ephy_shell); - ephy_bookmarks_set_icon (eb, priv->address, - priv->icon_address);*/ ephy_base_embed_load_icon (embed); } |