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 /mail/em-format-html-display.c | |
parent | 71e5a4dcbb6308b5ea842e37d81ab0d5ff8b56b8 (diff) | |
download | gsoc2013-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.c | 3 |
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) { |