diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-07-09 05:15:19 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-07-09 05:15:19 +0800 |
commit | 8fccec0d3da3a35d55ee131cc5699cf95c774c51 (patch) | |
tree | 2c782cc730677efe54e140cac07d7b7def146916 /embed/ephy-history.c | |
parent | e1af86afc3b7cc733fcb0b86f623106bdbeee7d2 (diff) | |
download | gsoc2013-epiphany-8fccec0d3da3a35d55ee131cc5699cf95c774c51.tar gsoc2013-epiphany-8fccec0d3da3a35d55ee131cc5699cf95c774c51.tar.gz gsoc2013-epiphany-8fccec0d3da3a35d55ee131cc5699cf95c774c51.tar.bz2 gsoc2013-epiphany-8fccec0d3da3a35d55ee131cc5699cf95c774c51.tar.lz gsoc2013-epiphany-8fccec0d3da3a35d55ee131cc5699cf95c774c51.tar.xz gsoc2013-epiphany-8fccec0d3da3a35d55ee131cc5699cf95c774c51.tar.zst gsoc2013-epiphany-8fccec0d3da3a35d55ee131cc5699cf95c774c51.zip |
Periodically save the favicon cache.
2005-07-08 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-favicon-cache.c: (ephy_favicon_cache_save),
(periodic_save_cb), (ephy_favicon_cache_init),
(ephy_favicon_cache_finalize), (favicon_download_completed_cb),
(favicon_download_cancelled_cb), (ephy_favicon_cache_get):
Periodically save the favicon cache.
* embed/ephy-history.c:
Source ID is guint not int.
Diffstat (limited to 'embed/ephy-history.c')
-rw-r--r-- | embed/ephy-history.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embed/ephy-history.c b/embed/ephy-history.c index 27faad9e9..f35b0f87a 100644 --- a/embed/ephy-history.c +++ b/embed/ephy-history.c @@ -54,11 +54,11 @@ struct _EphyHistoryPrivate EphyNode *last_page; GHashTable *hosts_hash; GHashTable *pages_hash; - int autosave_timeout; + guint autosave_timeout; guint update_hosts_idle; + guint disable_history_notifier_id; gboolean dirty; gboolean enabled; - guint disable_history_notifier_id; }; enum |