aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-tab.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2003-06-30 01:53:46 +0800
committerChristian Persch <chpe@src.gnome.org>2003-06-30 01:53:46 +0800
commitd8d0e6b3e3d001aea01cb90472fae751c75f00b4 (patch)
treec6ecc13cf953012fc76e9ad87602c71526aad045 /src/ephy-tab.c
parent71c44e8dc078e48bfb6bc6c2517041f75e9ab45e (diff)
downloadgsoc2013-epiphany-d8d0e6b3e3d001aea01cb90472fae751c75f00b4.tar
gsoc2013-epiphany-d8d0e6b3e3d001aea01cb90472fae751c75f00b4.tar.gz
gsoc2013-epiphany-d8d0e6b3e3d001aea01cb90472fae751c75f00b4.tar.bz2
gsoc2013-epiphany-d8d0e6b3e3d001aea01cb90472fae751c75f00b4.tar.lz
gsoc2013-epiphany-d8d0e6b3e3d001aea01cb90472fae751c75f00b4.tar.xz
gsoc2013-epiphany-d8d0e6b3e3d001aea01cb90472fae751c75f00b4.tar.zst
gsoc2013-epiphany-d8d0e6b3e3d001aea01cb90472fae751c75f00b4.zip
Fix callbacks for new signature of ge_location embed signal.
2003-06-29 Christian Persch <chpe@cvs.gnome.org> * src/ephy-nautilus-view.c: (gnv_embed_location_cb): * src/ephy-tab.c: (ephy_tab_address_cb): * embed/find-dialog.c: (sync_page_change): Fix callbacks for new signature of ge_location embed signal. * src/ephy-tab.c: (ephy_tab_icon_cache_changed_cb): Fix logic to update the site icon.
Diffstat (limited to 'src/ephy-tab.c')
-rw-r--r--src/ephy-tab.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ephy-tab.c b/src/ephy-tab.c
index 2db9f5871..273f8440c 100644
--- a/src/ephy-tab.c
+++ b/src/ephy-tab.c
@@ -502,7 +502,7 @@ ephy_tab_icon_cache_changed_cb (EphyFaviconCache *cache,
/* is this for us? */
if (tab->priv->icon_address != NULL &&
- strcmp (tab->priv->icon_address, address) != 0)
+ strcmp (tab->priv->icon_address, address) == 0)
{
/* notify */
g_object_notify (G_OBJECT (tab), "icon");
@@ -555,14 +555,14 @@ ephy_tab_favicon_cb (EphyEmbed *embed,
static void
ephy_tab_link_message_cb (EphyEmbed *embed,
- const gchar *message,
+ const char *message,
EphyTab *tab)
{
ephy_tab_set_link_message (tab, message);
}
static void
-ephy_tab_address_cb (EphyEmbed *embed, char *address, EphyTab *tab)
+ephy_tab_address_cb (EphyEmbed *embed, const char *address, EphyTab *tab)
{
if (tab->priv->address_expire == TAB_ADDRESS_EXPIRE_NOW)
{