[evolution-patches] Patch for Bug#301922




hi,

         I have attached a patch for the bug # 301922

         g_list_prepend() function adds the addresses in any of the To,cc,Bcc in front of the first added addresses.

          So,the receiver receives the mail with the contacts reversed.

         By replacing this g_list_prepend() with g_list_append() solves the bug.

--

S.Antony Vincent Pandian
--- e-destination-store.c	2005-07-07 16:52:05.537108224 +0530
+++ e-destination-store-changed.c	2005-07-07 16:53:48.705424256 +0530
@@ -324,7 +324,7 @@ e_destination_store_list_destinations (E
 
 	for (i = 0; i < destination_store->destinations->len; i++) {
 		EDestination *destination = g_ptr_array_index (destination_store->destinations, i);
-		destination_list = g_list_prepend (destination_list, destination);
+		destination_list = g_list_append (destination_list, destination);
 	}
 
 	return destination_list;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]