aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-display.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-11-06 03:47:59 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-11-06 03:47:59 +0800
commit115c8ef7a383b0b4be866192287301f56df540d2 (patch)
tree6d57dd11f4b6dd1422a286a4885615b215f3e27b /mail/mail-display.h
parent35eedfd6a15b275b98cb3d0b404b5d55cbc3d5bc (diff)
downloadgsoc2013-evolution-115c8ef7a383b0b4be866192287301f56df540d2.tar
gsoc2013-evolution-115c8ef7a383b0b4be866192287301f56df540d2.tar.gz
gsoc2013-evolution-115c8ef7a383b0b4be866192287301f56df540d2.tar.bz2
gsoc2013-evolution-115c8ef7a383b0b4be866192287301f56df540d2.tar.lz
gsoc2013-evolution-115c8ef7a383b0b4be866192287301f56df540d2.tar.xz
gsoc2013-evolution-115c8ef7a383b0b4be866192287301f56df540d2.tar.zst
gsoc2013-evolution-115c8ef7a383b0b4be866192287301f56df540d2.zip
Renamed from mail_html_write_string.
2001-11-01 Jeffrey Stedfast <fejj@ximian.com> * mail-display.h (mail_html_write): Renamed from mail_html_write_string. * mail-display.c (mail_text_write): Don't bother with varargs since nothing used them, we were only passing strings anyway... (mail_error_printf): Renamed from mail_error_write, this makes more sense. (mail_html_write): Removed. * mail-format.c: Updated to use gtk_html_stream_printf directly and s/mail_html_write_string/mail_html_write. (mail_lookup_handler): Don't use %.*s here either... (handle_text_enriched): Same. (write_one_text_plain_chunk): And finally here (also update for new mail_text_write api). (handle_multipart_signed): Update for new mail_text_write api. (format_mime_part): Update for new mail_error_text/printf name change. (handle_multipart_encrypted): Same. * mail-tools.c (mail_tool_generate_forward_subject): Same as mail_generate_reply. * mail-callbacks.c (mail_generate_reply): Don't use %.*s in any *printf* functions. svn path=/trunk/; revision=14590
Diffstat (limited to 'mail/mail-display.h')
-rw-r--r--mail/mail-display.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/mail/mail-display.h b/mail/mail-display.h
index a44d2483e8..3602fe230b 100644
--- a/mail/mail-display.h
+++ b/mail/mail-display.h
@@ -5,6 +5,7 @@
#include <gtk/gtkvbox.h>
#include <gtkhtml/gtkhtml.h>
+#include <gtkhtml/gtkhtml-stream.h>
#include <gal/widgets/e-scroll-frame.h>
@@ -74,15 +75,12 @@ void mail_display_set_charset (MailDisplay *mail_display,
void mail_display_load_images (MailDisplay *mail_display);
-#define mail_html_write_string(html, stream, string) gtk_html_write (html, stream, string, strlen (string))
+#define mail_html_write(html, stream, string) gtk_html_write (html, stream, string, strlen (string))
-void mail_html_write (GtkHTML *html,
- GtkHTMLStream *stream,
- const char *format, ...);
void mail_text_write (GtkHTML *html,
GtkHTMLStream *stream,
- const char *format, ...);
-void mail_error_write (GtkHTML *html,
+ const char *text);
+void mail_error_printf (GtkHTML *html,
GtkHTMLStream *stream,
const char *format, ...);