aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-favicon-cache.c
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2003-05-22 03:26:35 +0800
committerXan Lopez <xan@src.gnome.org>2003-05-22 03:26:35 +0800
commit537c11b20fd83ecf1194967fb6117be8061a22c6 (patch)
treeede8b238adb9ce71b4947fc80c1771897c59c34c /embed/ephy-favicon-cache.c
parent489e50f1d4027e009243f3bd015350417d4f5758 (diff)
downloadgsoc2013-epiphany-537c11b20fd83ecf1194967fb6117be8061a22c6.tar
gsoc2013-epiphany-537c11b20fd83ecf1194967fb6117be8061a22c6.tar.gz
gsoc2013-epiphany-537c11b20fd83ecf1194967fb6117be8061a22c6.tar.bz2
gsoc2013-epiphany-537c11b20fd83ecf1194967fb6117be8061a22c6.tar.lz
gsoc2013-epiphany-537c11b20fd83ecf1194967fb6117be8061a22c6.tar.xz
gsoc2013-epiphany-537c11b20fd83ecf1194967fb6117be8061a22c6.tar.zst
gsoc2013-epiphany-537c11b20fd83ecf1194967fb6117be8061a22c6.zip
s/g_object_unref/ephy_node_unref/
s/g_object_unref/ephy_node_unref/
Diffstat (limited to 'embed/ephy-favicon-cache.c')
-rw-r--r--embed/ephy-favicon-cache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/embed/ephy-favicon-cache.c b/embed/ephy-favicon-cache.c
index 5488a9451..1391c5f5c 100644
--- a/embed/ephy-favicon-cache.c
+++ b/embed/ephy-favicon-cache.c
@@ -221,7 +221,7 @@ remove_obsolete_icons (EphyFaviconCache *eb)
path = g_build_filename (eb->priv->directory,
filename, NULL);
gnome_vfs_unlink (path);
- g_object_unref (kid);
+ ephy_node_unref (kid);
}
}
}
@@ -324,7 +324,7 @@ kill_download (gpointer key,
icon = g_hash_table_lookup (cache->priv->icons_hash, (char *)key);
g_static_rw_lock_reader_unlock (cache->priv->icons_hash_lock);
- g_object_unref (icon);
+ ephy_node_unref (icon);
return TRUE;
}