aboutsummaryrefslogtreecommitdiffstats
path: root/composer
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-04-18 04:23:30 +0800
committerDan Winship <danw@src.gnome.org>2000-04-18 04:23:30 +0800
commit96b306af3289d236e2b23f8cb91327dc71c937b8 (patch)
tree10e03a5d8ad12db4751cd6c4744a6525c4e793d3 /composer
parentc52986db9777f0da353908c57e2c8a3e16204448 (diff)
downloadgsoc2013-evolution-96b306af3289d236e2b23f8cb91327dc71c937b8.tar
gsoc2013-evolution-96b306af3289d236e2b23f8cb91327dc71c937b8.tar.gz
gsoc2013-evolution-96b306af3289d236e2b23f8cb91327dc71c937b8.tar.bz2
gsoc2013-evolution-96b306af3289d236e2b23f8cb91327dc71c937b8.tar.lz
gsoc2013-evolution-96b306af3289d236e2b23f8cb91327dc71c937b8.tar.xz
gsoc2013-evolution-96b306af3289d236e2b23f8cb91327dc71c937b8.tar.zst
gsoc2013-evolution-96b306af3289d236e2b23f8cb91327dc71c937b8.zip
Remove the "session" field from CamelMimeMessage. Nothing uses it, about
* camel-mime-message.[ch]: Remove the "session" field from CamelMimeMessage. Nothing uses it, about half of the existing calls to camel_mime_message_new_with_session pass NULL, and there's no obvious reason for it to be there. * others: Use camel_mime_message_new instead of camel_mime_message_new_with_session svn path=/trunk/; revision=2479
Diffstat (limited to 'composer')
-rw-r--r--composer/ChangeLog5
-rw-r--r--composer/e-msg-composer.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog
index 9526622354..d483512e3d 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,8 @@
+2000-04-17 Dan Winship <danw@helixcode.com>
+
+ * e-msg-composer.c (build_message): Change
+ camel_mime_message_new_with_session to camel_mime_message_new
+
2000-03-17 bertrand <bertrand@helixcode.com>
* e-msg-composer.c (create_menubar): Pass the composer as the data
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index 3b822863dc..c07a70b25a 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -105,7 +105,7 @@ build_message (EMsgComposer *composer)
CamelMimeBodyPart *body_part;
CamelMultipart *multipart;
- new = camel_mime_message_new_with_session (NULL);
+ new = camel_mime_message_new ();
e_msg_composer_hdrs_to_message (E_MSG_COMPOSER_HDRS (composer->hdrs),
new);