aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2009-01-25 11:58:06 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2009-01-25 11:58:06 +0800
commit04024bf52cf11bffb2272e449055a2bd389bd59f (patch)
treec2eaec5b48c323cc0e29b28d3d322a70424207d3 /widgets/misc
parent32ffc3ca1ca80b2d843fbe28da7deab35fabcbf1 (diff)
downloadgsoc2013-evolution-04024bf52cf11bffb2272e449055a2bd389bd59f.tar
gsoc2013-evolution-04024bf52cf11bffb2272e449055a2bd389bd59f.tar.gz
gsoc2013-evolution-04024bf52cf11bffb2272e449055a2bd389bd59f.tar.bz2
gsoc2013-evolution-04024bf52cf11bffb2272e449055a2bd389bd59f.tar.lz
gsoc2013-evolution-04024bf52cf11bffb2272e449055a2bd389bd59f.tar.xz
gsoc2013-evolution-04024bf52cf11bffb2272e449055a2bd389bd59f.tar.zst
gsoc2013-evolution-04024bf52cf11bffb2272e449055a2bd389bd59f.zip
Fix a crash when cancelling a task in the task bar.
Tinker with task bar padding. svn path=/branches/kill-bonobo/; revision=37131
Diffstat (limited to 'widgets/misc')
-rw-r--r--widgets/misc/e-activity-proxy.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/widgets/misc/e-activity-proxy.c b/widgets/misc/e-activity-proxy.c
index 24ffa5e521..dc41e71f8f 100644
--- a/widgets/misc/e-activity-proxy.c
+++ b/widgets/misc/e-activity-proxy.c
@@ -151,6 +151,9 @@ activity_proxy_dispose (GObject *object)
priv = E_ACTIVITY_PROXY_GET_PRIVATE (object);
if (priv->activity != NULL) {
+ g_signal_handlers_disconnect_matched (
+ priv->activity, G_SIGNAL_MATCH_FUNC, 0, 0,
+ NULL, activity_proxy_update, NULL);
g_object_unref (priv->activity);
priv->activity = NULL;
}