diff options
author | Srinivasa Ragavan <sragavan@novell.com> | 2006-01-16 15:02:24 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-01-16 15:02:24 +0800 |
commit | 3f92713d77274237fb42929660d67cb0b83ec521 (patch) | |
tree | a895bd8a24b31fc740bd2922321b2a3b68e9bfa5 /mail | |
parent | 73c62f657c57040b5b8f0a615702d6b71a2f3af7 (diff) | |
download | gsoc2013-evolution-3f92713d77274237fb42929660d67cb0b83ec521.tar.gz gsoc2013-evolution-3f92713d77274237fb42929660d67cb0b83ec521.tar.zst gsoc2013-evolution-3f92713d77274237fb42929660d67cb0b83ec521.zip |
Changed event to scroll_event in rajeev's patch.
2006-01-16 Srinivasa Ragavan <sragavan@novell.com>
* em-format-html-display.c: (em_format_html_display_new): Changed
event to scroll_event in rajeev's patch.
svn path=/trunk/; revision=31196
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/em-format-html-display.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index b89a659109..85253bca5f 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2006-01-16 Srinivasa Ragavan <sragavan@novell.com> + + + * em-format-html-display.c: (em_format_html_display_new): Changed + event to scroll_event in rajeev's patch. + 2006-01-12 Rohini S <srohini@novell.com> ** Fixes bug #246257 diff --git a/mail/em-format-html-display.c b/mail/em-format-html-display.c index 5646246cac..389a5b46a2 100644 --- a/mail/em-format-html-display.c +++ b/mail/em-format-html-display.c @@ -428,7 +428,7 @@ EMFormatHTMLDisplay *em_format_html_display_new(void) g_signal_connect(efhd->formathtml.html, "link_clicked", G_CALLBACK(efhd_html_link_clicked), efhd); g_signal_connect(efhd->formathtml.html, "on_url", G_CALLBACK(efhd_html_on_url), efhd); g_signal_connect(efhd->formathtml.html, "button_press_event", G_CALLBACK(efhd_html_button_press_event), efhd); - g_signal_connect(efhd->formathtml.html,"event", G_CALLBACK(efhd_scroll_event), efhd); + g_signal_connect(efhd->formathtml.html,"scroll_event", G_CALLBACK(efhd_scroll_event), efhd); return efhd; } |