[evolution-patches] Revised Patch for Bug#301922




hi,

         i have attached the patch for the bug # 301922.

         The g_list_prepend() placed the addresses before the existing addresses.

         since all the addresses are in the reverse order just appending g_list_reverse() reverses the addresses showing it in the correct order.

         this is more efficient than changing g_list_prepend() to g_list_append().

S.Antony Vincent Pandian
--- e-destination-store.c	2005-07-08 10:34:46.256045960 +0530
+++ e-destination-store-changed.c	2005-07-08 10:35:06.339992736 +0530
@@ -327,6 +327,7 @@ e_destination_store_list_destinations (E
 		destination_list = g_list_prepend (destination_list, destination);
 	}
 	
+	destination_list = g_list_reverse(destination_list);
 	return destination_list;
 }
 


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