diff options
author | Dan Winship <danw@src.gnome.org> | 2000-04-18 04:23:30 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-04-18 04:23:30 +0800 |
commit | 96b306af3289d236e2b23f8cb91327dc71c937b8 (patch) | |
tree | 10e03a5d8ad12db4751cd6c4744a6525c4e793d3 /tests/test10.c | |
parent | c52986db9777f0da353908c57e2c8a3e16204448 (diff) | |
download | gsoc2013-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 'tests/test10.c')
-rw-r--r-- | tests/test10.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test10.c b/tests/test10.c index 1d1d2904b9..fe976d4808 100644 --- a/tests/test10.c +++ b/tests/test10.c @@ -26,7 +26,7 @@ create_sample_mime_message () CamelMultipart *multipart; - message = camel_mime_message_new_with_session ((CamelSession *)NULL); + message = camel_mime_message_new (); camel_mime_part_set_description (CAMEL_MIME_PART (message), "a test"); |