aboutsummaryrefslogtreecommitdiffstats
path: root/composer
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-04-26 22:40:05 +0800
committerDan Winship <danw@src.gnome.org>2000-04-26 22:40:05 +0800
commitec4ad73a58ea138bdcb5e67bccfb3495685f9354 (patch)
tree982dc574f85241ae8aaa30539f75d7fcd515f62d /composer
parent599e13f9a194a9d52aefdafb96f6347196c58768 (diff)
downloadgsoc2013-evolution-ec4ad73a58ea138bdcb5e67bccfb3495685f9354.tar
gsoc2013-evolution-ec4ad73a58ea138bdcb5e67bccfb3495685f9354.tar.gz
gsoc2013-evolution-ec4ad73a58ea138bdcb5e67bccfb3495685f9354.tar.bz2
gsoc2013-evolution-ec4ad73a58ea138bdcb5e67bccfb3495685f9354.tar.lz
gsoc2013-evolution-ec4ad73a58ea138bdcb5e67bccfb3495685f9354.tar.xz
gsoc2013-evolution-ec4ad73a58ea138bdcb5e67bccfb3495685f9354.tar.zst
gsoc2013-evolution-ec4ad73a58ea138bdcb5e67bccfb3495685f9354.zip
add a s/SIMPLE_// that notzed missed remove a now-unused variable
* e-msg-composer-attachment-bar.c (attach_to_multipart): add a s/SIMPLE_// that notzed missed * e-msg-composer.c (build_message): remove a now-unused variable svn path=/trunk/; revision=2630
Diffstat (limited to 'composer')
-rw-r--r--composer/ChangeLog6
-rw-r--r--composer/e-msg-composer-attachment-bar.c2
-rw-r--r--composer/e-msg-composer.c1
3 files changed, 7 insertions, 2 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog
index 7f5c75b617..33aee5962c 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,9 @@
+2000-04-26 Dan Winship <danw@helixcode.com>
+
+ * e-msg-composer-attachment-bar.c (attach_to_multipart): add a
+ s/SIMPLE_// that notzed missed
+ * e-msg-composer.c (build_message): remove a now-unused variable
+
2000-04-26 NotZed <NotZed@HelixCode.com>
* e-msg-composer.c (build_message): Use camel_mime_part_set_text()
diff --git a/composer/e-msg-composer-attachment-bar.c b/composer/e-msg-composer-attachment-bar.c
index c37c9558a0..83c9088d07 100644
--- a/composer/e-msg-composer-attachment-bar.c
+++ b/composer/e-msg-composer-attachment-bar.c
@@ -619,7 +619,7 @@ attach_to_multipart (CamelMultipart *multipart,
camel_mime_part_set_content_type (CAMEL_MIME_PART (part),
attachment->mime_type);
- content = CAMEL_DATA_WRAPPER (gtk_object_new (CAMEL_SIMPLE_DATA_WRAPPER_TYPE,
+ content = CAMEL_DATA_WRAPPER (gtk_object_new (CAMEL_DATA_WRAPPER_TYPE,
NULL));
camel_data_wrapper_set_mime_type (content, attachment->mime_type);
stream = camel_stream_fs_new_with_name (attachment->file_name, O_RDONLY, 0);
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index 17b34fb943..288bd50e59 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -136,7 +136,6 @@ build_message (EMsgComposer *composer)
{
CamelMimeMessage *new;
CamelMimeBodyPart *body_part;
- CamelSimpleDataWrapper *sdr;
CamelMultipart *multipart;
char *text;
int i;