aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-history.c
diff options
context:
space:
mode:
authorAdam Hooper <adamh@src.gnome.org>2004-04-10 00:59:36 +0800
committerAdam Hooper <adamh@src.gnome.org>2004-04-10 00:59:36 +0800
commit19b0d73f92fd47c44c140869dcc8d252869b9c02 (patch)
treec4b4fa6adfa3b691297972f54216f33216059dc0 /embed/ephy-history.c
parent6e39ba4a5df4a9102bd97d42ab29f4204aeeb43d (diff)
downloadgsoc2013-epiphany-19b0d73f92fd47c44c140869dcc8d252869b9c02.tar
gsoc2013-epiphany-19b0d73f92fd47c44c140869dcc8d252869b9c02.tar.gz
gsoc2013-epiphany-19b0d73f92fd47c44c140869dcc8d252869b9c02.tar.bz2
gsoc2013-epiphany-19b0d73f92fd47c44c140869dcc8d252869b9c02.tar.lz
gsoc2013-epiphany-19b0d73f92fd47c44c140869dcc8d252869b9c02.tar.xz
gsoc2013-epiphany-19b0d73f92fd47c44c140869dcc8d252869b9c02.tar.zst
gsoc2013-epiphany-19b0d73f92fd47c44c140869dcc8d252869b9c02.zip
Change initial refcound of EphyNode to 1, not 0
Diffstat (limited to 'embed/ephy-history.c')
-rw-r--r--embed/ephy-history.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/embed/ephy-history.c b/embed/ephy-history.c
index 300c601a0..26ff343b3 100644
--- a/embed/ephy-history.c
+++ b/embed/ephy-history.c
@@ -482,7 +482,6 @@ ephy_history_init (EphyHistory *eb)
/* Pages */
eb->priv->pages = ephy_node_new_with_id (db, PAGES_NODE_ID);
- ephy_node_ref (eb->priv->pages);
g_value_init (&value, G_TYPE_STRING);
g_value_set_string (&value, _("All"));
ephy_node_set_property (eb->priv->pages,
@@ -513,7 +512,6 @@ ephy_history_init (EphyHistory *eb)
/* Hosts */
eb->priv->hosts = ephy_node_new_with_id (db, HOSTS_NODE_ID);
- ephy_node_ref (eb->priv->hosts);
ephy_node_signal_connect_object (eb->priv->hosts,
EPHY_NODE_CHILD_ADDED,
(EphyNodeCallback) hosts_added_cb,