aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-window.c
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2009-01-05 00:22:48 +0800
committerXan Lopez <xan@src.gnome.org>2009-01-05 00:22:48 +0800
commitd6163a3115ce4b0b6a9d7c70f5900d215a6d081e (patch)
tree68d2f21767dbeee98892ebead5ee553fb5f36389 /src/ephy-window.c
parent40f095d25aaedd7e019c4b19c5b1a36a4ab9aed6 (diff)
downloadgsoc2013-epiphany-d6163a3115ce4b0b6a9d7c70f5900d215a6d081e.tar
gsoc2013-epiphany-d6163a3115ce4b0b6a9d7c70f5900d215a6d081e.tar.gz
gsoc2013-epiphany-d6163a3115ce4b0b6a9d7c70f5900d215a6d081e.tar.bz2
gsoc2013-epiphany-d6163a3115ce4b0b6a9d7c70f5900d215a6d081e.tar.lz
gsoc2013-epiphany-d6163a3115ce4b0b6a9d7c70f5900d215a6d081e.tar.xz
gsoc2013-epiphany-d6163a3115ce4b0b6a9d7c70f5900d215a6d081e.tar.zst
gsoc2013-epiphany-d6163a3115ce4b0b6a9d7c70f5900d215a6d081e.zip
ephy-window: remove entry clear timeout without chaining finalize.
svn path=/trunk/; revision=8666
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r--src/ephy-window.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c
index 995fb1f9d..46b2dfdb1 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -3701,13 +3701,13 @@ ephy_window_finalize (GObject *object)
g_hash_table_destroy (priv->tabs_to_remove);
+ if (priv->clear_progress_timeout_id)
+ g_source_remove (priv->clear_progress_timeout_id);
+
G_OBJECT_CLASS (ephy_window_parent_class)->finalize (object);
LOG ("EphyWindow finalised %p", object);
- if (priv->clear_progress_timeout_id)
- g_source_remove (priv->clear_progress_timeout_id);
-
#ifdef ENABLE_PYTHON
ephy_python_schedule_gc ();
#endif