diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-09-16 19:38:34 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-09-27 21:28:48 +0800 |
commit | 49918153e194f92b63049bf4bb93f13edfff7720 (patch) | |
tree | 5b3b61cfe48fcabef4acf61b06b91349c543a378 /src | |
parent | 4ef008b72acb19f756f39e1a3795d1f3fc2c6820 (diff) | |
download | gsoc2013-empathy-49918153e194f92b63049bf4bb93f13edfff7720.tar gsoc2013-empathy-49918153e194f92b63049bf4bb93f13edfff7720.tar.gz gsoc2013-empathy-49918153e194f92b63049bf4bb93f13edfff7720.tar.bz2 gsoc2013-empathy-49918153e194f92b63049bf4bb93f13edfff7720.tar.lz gsoc2013-empathy-49918153e194f92b63049bf4bb93f13edfff7720.tar.xz gsoc2013-empathy-49918153e194f92b63049bf4bb93f13edfff7720.tar.zst gsoc2013-empathy-49918153e194f92b63049bf4bb93f13edfff7720.zip |
disconnect signal before destroying the video widget
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-call-window.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index 7b94a468a..4e7e31ccf 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -1966,6 +1966,7 @@ empathy_call_window_disconnected (EmpathyCallWindow *self, GTK_PROGRESS_BAR (priv->volume_progress_bar), 0); /* destroy the video output; it will be recreated when we'll redial */ + disconnect_video_output_motion_handler (self); gtk_widget_destroy (priv->video_output); priv->video_output = NULL; |