aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-formatter.h
diff options
context:
space:
mode:
authorMatthew Loper <mloper@src.gnome.org>2000-01-22 00:20:01 +0800
committerMatthew Loper <mloper@src.gnome.org>2000-01-22 00:20:01 +0800
commitfe547e35612befdaf9932c2be6421c1664306959 (patch)
tree106f37a1c6ed2a95470259761b2cc1888440270b /camel/camel-formatter.h
parent6cfc31750daed7f502b3d0097892a70e9f134fdf (diff)
downloadgsoc2013-evolution-fe547e35612befdaf9932c2be6421c1664306959.tar
gsoc2013-evolution-fe547e35612befdaf9932c2be6421c1664306959.tar.gz
gsoc2013-evolution-fe547e35612befdaf9932c2be6421c1664306959.tar.bz2
gsoc2013-evolution-fe547e35612befdaf9932c2be6421c1664306959.tar.lz
gsoc2013-evolution-fe547e35612befdaf9932c2be6421c1664306959.tar.xz
gsoc2013-evolution-fe547e35612befdaf9932c2be6421c1664306959.tar.zst
gsoc2013-evolution-fe547e35612befdaf9932c2be6421c1664306959.zip
+ * camel/camel-formatter.c (camel_formatter_make_html): added a
+ CamelMimeMessage as a param to this function, and removed it as a + member of the object. svn path=/trunk/; revision=1602
Diffstat (limited to 'camel/camel-formatter.h')
-rw-r--r--camel/camel-formatter.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/camel/camel-formatter.h b/camel/camel-formatter.h
index d2ed5bd12c..16942fc5ce 100644
--- a/camel/camel-formatter.h
+++ b/camel/camel-formatter.h
@@ -50,13 +50,12 @@ typedef struct {
GtkType camel_formatter_get_type (void);
/* Public functions */
-CamelFormatter* camel_formatter_new (CamelMimeMessage* msg);
-
-void set_mime_message (CamelFormatter* cfm, CamelMimeMessage* msg);
+CamelFormatter* camel_formatter_new ();
/* The main job of CamelFormatter is to take a mime message, and
produce html from it. */
void camel_formatter_make_html (CamelFormatter* cmf,
+ CamelMimeMessage *msg,
CamelStream* stream_out);
#endif // CAMEL_FORMATTER_H