diff options
author | Nickolay V. Shmyrev <nshmyrev@yandex.ru> | 2006-12-21 17:14:52 +0800 |
---|---|---|
committer | Nickolay V. Shmyrev <nshmyrev@src.gnome.org> | 2006-12-21 17:14:52 +0800 |
commit | d81bdb979407c0d21ab562bc0a16533eb967eef1 (patch) | |
tree | 070e447cecb9d0a6c9a68afd5ffa52816695c628 /mail/em-format-html-display.c | |
parent | c004b304e9f83349f87b845bb485de18a550615e (diff) | |
download | gsoc2013-evolution-d81bdb979407c0d21ab562bc0a16533eb967eef1.tar.gz gsoc2013-evolution-d81bdb979407c0d21ab562bc0a16533eb967eef1.tar.zst gsoc2013-evolution-d81bdb979407c0d21ab562bc0a16533eb967eef1.zip |
Disconnect handlers on image destroy. Fixes bug #340165.
2006-12-21 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
* mail/em-format-html-display.c: (efhd_image_unallocate),
(efhd_attachment_image):
Disconnect handlers on image destroy. Fixes bug
#340165.
Fixes changelog issue and build issue
svn path=/trunk/; revision=33086
Diffstat (limited to 'mail/em-format-html-display.c')
-rw-r--r-- | mail/em-format-html-display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-format-html-display.c b/mail/em-format-html-display.c index 4564e8155f..4c8f16444b 100644 --- a/mail/em-format-html-display.c +++ b/mail/em-format-html-display.c @@ -1698,7 +1698,7 @@ efhd_image_unallocate (struct _EMFormatPURI * puri) g_signal_handlers_disconnect_by_func(info->html, efhd_image_resized, info); g_signal_handlers_disconnect_by_func(info->event_box, efhd_image_popup, info); - g_signal_handlers_disconnect_by_func(info->event_box, efhd_image_change_cursor, info); + g_signal_handlers_disconnect_by_func(info->event_box, efhd_change_cursor, info); g_signal_handlers_disconnect_by_func(info->event_box, efhd_attachment_popup_menu, info); g_signal_handlers_disconnect_by_func(info->event_box, efhd_image_fit_width, info); } |