diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2009-01-25 11:58:06 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2009-01-25 11:58:06 +0800 |
commit | 04024bf52cf11bffb2272e449055a2bd389bd59f (patch) | |
tree | c2eaec5b48c323cc0e29b28d3d322a70424207d3 /widgets/misc/e-activity-proxy.c | |
parent | 32ffc3ca1ca80b2d843fbe28da7deab35fabcbf1 (diff) | |
download | gsoc2013-evolution-04024bf52cf11bffb2272e449055a2bd389bd59f.tar.gz 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/e-activity-proxy.c')
-rw-r--r-- | widgets/misc/e-activity-proxy.c | 3 |
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; } |