aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/em-format-html-display.c2
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;
}