diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-01-13 03:34:47 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-01-13 03:34:47 +0800 |
commit | 139bf0350e817adcb7c277a1d3c0b11ce6318744 (patch) | |
tree | 939bac15670e7c51befbfda3989d3478b88456da /embed/ephy-history.c | |
parent | 0e45b23b41142b62e046b0010a01b0dcf828f13a (diff) | |
download | gsoc2013-epiphany-139bf0350e817adcb7c277a1d3c0b11ce6318744.tar gsoc2013-epiphany-139bf0350e817adcb7c277a1d3c0b11ce6318744.tar.gz gsoc2013-epiphany-139bf0350e817adcb7c277a1d3c0b11ce6318744.tar.bz2 gsoc2013-epiphany-139bf0350e817adcb7c277a1d3c0b11ce6318744.tar.lz gsoc2013-epiphany-139bf0350e817adcb7c277a1d3c0b11ce6318744.tar.xz gsoc2013-epiphany-139bf0350e817adcb7c277a1d3c0b11ce6318744.tar.zst gsoc2013-epiphany-139bf0350e817adcb7c277a1d3c0b11ce6318744.zip |
Default history to "enabled".
2004-01-12 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-history.c: (ephy_history_set_enabled),
(ephy_history_init):
Default history to "enabled".
Diffstat (limited to 'embed/ephy-history.c')
-rw-r--r-- | embed/ephy-history.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/embed/ephy-history.c b/embed/ephy-history.c index aa931c03f..ab6fcd5e1 100644 --- a/embed/ephy-history.c +++ b/embed/ephy-history.c @@ -117,6 +117,8 @@ ephy_history_set_enabled (EphyHistory *history, { LOG ("ephy_history_set_enabled %d", enabled) + history->priv->enabled = enabled; + ephy_node_db_set_immutable (history->priv->db, !enabled); if (enabled == FALSE) @@ -462,6 +464,7 @@ ephy_history_init (EphyHistory *eb) eb->priv = EPHY_HISTORY_GET_PRIVATE (eb); eb->priv->update_hosts_idle = 0; + eb->priv->enabled = TRUE; db = ephy_node_db_new (EPHY_NODE_DB_HISTORY); eb->priv->db = db; |