diff options
author | Milan Crha <mcrha@redhat.com> | 2008-04-23 17:57:24 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2008-04-23 17:57:24 +0800 |
commit | f2eed203744e9b2b52f9284693b022ae590108f5 (patch) | |
tree | b7b9ed92679a4b2d7a8fce9dfac14c295b30b98c | |
parent | 71e5a4dcbb6308b5ea842e37d81ab0d5ff8b56b8 (diff) | |
download | gsoc2013-evolution-f2eed203744e9b2b52f9284693b022ae590108f5.tar.gz gsoc2013-evolution-f2eed203744e9b2b52f9284693b022ae590108f5.tar.zst gsoc2013-evolution-f2eed203744e9b2b52f9284693b022ae590108f5.zip |
Compiler warning fix.
2008-04-23 Milan Crha <mcrha@redhat.com>
* em-format-html-display.c: (efhd_update_bar):
Compiler warning fix.
svn path=/trunk/; revision=35412
-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) { |