From 96b306af3289d236e2b23f8cb91327dc71c937b8 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Mon, 17 Apr 2000 20:23:30 +0000 Subject: 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 --- camel/providers/MH/camel-mh-folder.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'camel/providers/MH') diff --git a/camel/providers/MH/camel-mh-folder.c b/camel/providers/MH/camel-mh-folder.c index 86bbab46ba..f4ff8f305a 100644 --- a/camel/providers/MH/camel-mh-folder.c +++ b/camel/providers/MH/camel-mh-folder.c @@ -508,7 +508,7 @@ _get_message (CamelFolder *folder, gint number, CamelException *ex) if (input_stream != NULL) { #warning use session field here - message = camel_mime_message_new_with_session ( (CamelSession *)NULL); + message = camel_mime_message_new (); camel_data_wrapper_construct_from_stream ( CAMEL_DATA_WRAPPER (message), input_stream); gtk_object_unref (GTK_OBJECT (input_stream)); message->message_number = number; @@ -785,7 +785,7 @@ _get_message_by_uid (CamelFolder *folder, const gchar *uid, CamelException *ex) if (input_stream != NULL) { #warning use session field here - message = camel_mime_message_new_with_session ( (CamelSession *)NULL); + message = camel_mime_message_new (); camel_data_wrapper_construct_from_stream ( CAMEL_DATA_WRAPPER (message), input_stream); gtk_object_unref (GTK_OBJECT (input_stream)); -- cgit v1.2.3