diff options
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/em-format-html-display.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 8eb4bea73c..62bda655cc 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,10 @@ 2008-04-23 Milan Crha <mcrha@redhat.com> + * em-format-html-display.c: (efhd_update_bar): + Compiler warning fix. + +2008-04-23 Milan Crha <mcrha@redhat.com> + ** Fix for bug #529375 * evolution-mail.schemas.in: diff --git a/mail/em-format-html-display.c b/mail/em-format-html-display.c index a81e6c13e6..48b9abc718 100644 --- a/mail/em-format-html-display.c +++ b/mail/em-format-html-display.c @@ -2169,10 +2169,11 @@ efhd_update_bar(EMFormatHTML *efh, GtkHTMLEmbedded *eb, EMFormatHTMLPObject *pob EMFormatHTMLDisplay *efhd = (EMFormatHTMLDisplay *)efh; struct _EMFormatHTMLDisplayPrivate *priv = efhd->priv; - e_attachment_bar_refresh (priv->attachment_bar); + e_attachment_bar_refresh (E_ATTACHMENT_BAR (priv->attachment_bar)); return TRUE; } + static gboolean efhd_add_bar(EMFormatHTML *efh, GtkHTMLEmbedded *eb, EMFormatHTMLPObject *pobject) { |