aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-format-html-display.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2008-04-23 17:57:24 +0800
committerMilan Crha <mcrha@src.gnome.org>2008-04-23 17:57:24 +0800
commitf2eed203744e9b2b52f9284693b022ae590108f5 (patch)
treeb7b9ed92679a4b2d7a8fce9dfac14c295b30b98c /mail/em-format-html-display.c
parent71e5a4dcbb6308b5ea842e37d81ab0d5ff8b56b8 (diff)
downloadgsoc2013-evolution-f2eed203744e9b2b52f9284693b022ae590108f5.tar
gsoc2013-evolution-f2eed203744e9b2b52f9284693b022ae590108f5.tar.gz
gsoc2013-evolution-f2eed203744e9b2b52f9284693b022ae590108f5.tar.bz2
gsoc2013-evolution-f2eed203744e9b2b52f9284693b022ae590108f5.tar.lz
gsoc2013-evolution-f2eed203744e9b2b52f9284693b022ae590108f5.tar.xz
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
Diffstat (limited to 'mail/em-format-html-display.c')
-rw-r--r--mail/em-format-html-display.c3
1 files changed, 2 insertions, 1 deletions
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)
{