evolution-exchange r1764 - in trunk: . addressbook storage



Author: mbarnes
Date: Fri Aug 29 00:16:07 2008
New Revision: 1764
URL: http://svn.gnome.org/viewvc/evolution-exchange?rev=1764&view=rev

Log:
2008-08-28  Matthew Barnes  <mbarnes redhat com>

	* addressbook/e-book-backend-exchange.c (find_deleted_ids):
	* storage/exchange-component.c (impl_createView):
	Fix a couple compiler warnings.



Modified:
   trunk/ChangeLog
   trunk/addressbook/e-book-backend-exchange.c
   trunk/storage/exchange-component.c

Modified: trunk/addressbook/e-book-backend-exchange.c
==============================================================================
--- trunk/addressbook/e-book-backend-exchange.c	(original)
+++ trunk/addressbook/e-book-backend-exchange.c	Fri Aug 29 00:16:07 2008
@@ -2396,7 +2396,7 @@
 		char *vcard = NULL;
 		EContact *contact = e_contact_new ();
 		if (contact) {
-			e_contact_set (contact, E_CONTACT_UID, id);
+			e_contact_set (contact, E_CONTACT_UID, (gpointer) id);
 			vcard = e_vcard_to_string (E_VCARD (contact), EVC_FORMAT_VCARD_30);
 			if (vcard) {
 				ctx->changes = g_list_prepend (

Modified: trunk/storage/exchange-component.c
==============================================================================
--- trunk/storage/exchange-component.c	(original)
+++ trunk/storage/exchange-component.c	Fri Aug 29 00:16:07 2008
@@ -144,6 +144,7 @@
 static GNOME_Evolution_ComponentView
 impl_createView (PortableServer_Servant servant,
 		 GNOME_Evolution_ShellView parent,
+                 CORBA_boolean select_item,
 		 CORBA_Environment *ev)
 {
 	EComponentView *component_view = e_component_view_new_controls (parent, "exchange",



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