aboutsummaryrefslogtreecommitdiffstats
path: root/mail/folder-browser.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-05-03 00:07:18 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-05-03 00:07:18 +0800
commit8a9ec3432ed901063bfe665221cced3be6353015 (patch)
tree285dc7bb77c753a410872a3f859422c5d5fc4394 /mail/folder-browser.c
parent271ebab0a7a4777bc3750154630278e4aa2614bc (diff)
downloadgsoc2013-evolution-8a9ec3432ed901063bfe665221cced3be6353015.tar
gsoc2013-evolution-8a9ec3432ed901063bfe665221cced3be6353015.tar.gz
gsoc2013-evolution-8a9ec3432ed901063bfe665221cced3be6353015.tar.bz2
gsoc2013-evolution-8a9ec3432ed901063bfe665221cced3be6353015.tar.lz
gsoc2013-evolution-8a9ec3432ed901063bfe665221cced3be6353015.tar.xz
gsoc2013-evolution-8a9ec3432ed901063bfe665221cced3be6353015.tar.zst
gsoc2013-evolution-8a9ec3432ed901063bfe665221cced3be6353015.zip
To be consistant with the message-list envelope toggle, undelete the
2003-04-30 Jeffrey Stedfast <fejj@ximian.com> * mail-callbacks.c (mark_as_unseen): To be consistant with the message-list envelope toggle, undelete the message when we unmark the Seen flag here as well. Fixes bug #42118. 2003-04-30 Jeffrey Stedfast <fejj@ximian.com> * message-list.c (ml_tree_value_at): Fixed to return the correct values (swapped) in order to fix bug #42120. 2003-04-30 Jeffrey Stedfast <fejj@ximian.com> * message-list.c (regen_list_regened): Save the tree state before we tear down the tree and then load it back again. yay. Fixes bug #42170 and #40074. svn path=/trunk/; revision=21047
Diffstat (limited to 'mail/folder-browser.c')
-rw-r--r--mail/folder-browser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/folder-browser.c b/mail/folder-browser.c
index 29a59cbc11..d70ea2c47e 100644
--- a/mail/folder-browser.c
+++ b/mail/folder-browser.c
@@ -614,7 +614,7 @@ selection_get (GtkWidget *widget, GtkSelectionData *selection_data,
message = camel_folder_get_message (source, uids->pdata[i], NULL);
g_free (uids->pdata[i]);
- if (message) {
+ if (message) {
camel_stream_write (stream, "From - \n", 8);
camel_data_wrapper_write_to_stream (CAMEL_DATA_WRAPPER (message), stream);
camel_object_unref (CAMEL_OBJECT (message));