[evolution-ews] Fix build failure for ews 2.32.x branch



commit a70c44a1ca84cfcc356dc11468c4e1478da11ce5
Author: Chenthill Palanisamy <pchenthill novell com>
Date:   Mon Oct 3 14:23:16 2011 +0530

    Fix build failure for ews 2.32.x branch

 src/addressbook/e-book-backend-sqlitedb.c |    2 +-
 src/addressbook/libedata-book-compat.c    |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/addressbook/e-book-backend-sqlitedb.c b/src/addressbook/e-book-backend-sqlitedb.c
index f13874a..de688cb 100644
--- a/src/addressbook/e-book-backend-sqlitedb.c
+++ b/src/addressbook/e-book-backend-sqlitedb.c
@@ -31,7 +31,7 @@
 
 #include "libedataserver/e-sexp.h"
 #include "libedata-book/e-book-backend-sexp.h"
-#include "libebackend/e-sqlite3-vfs.h"
+#include "e-sqlite3-vfs.h"
 #include "e-book-backend-sqlitedb.h"
 
 #define d(x)
diff --git a/src/addressbook/libedata-book-compat.c b/src/addressbook/libedata-book-compat.c
index 9d59684..29edae7 100644
--- a/src/addressbook/libedata-book-compat.c
+++ b/src/addressbook/libedata-book-compat.c
@@ -38,7 +38,7 @@ convert_slist_to_list (GSList *slist)
 void	e_data_book_respond_remove_contacts_compat (EDataBook *book, guint32 opid, GError *error, const GSList *ids)
 {
 #if ! EDS_CHECK_VERSION (3,1,0)
-	GList *l = convert_slist_to_list (ids);
+	GList *l = convert_slist_to_list ((GSList *) ids);
 	e_data_book_respond_remove_contacts (book, opid, error, l);
 	g_list_free (l);
 #else
@@ -49,7 +49,7 @@ void	e_data_book_respond_remove_contacts_compat (EDataBook *book, guint32 opid,
 void	e_data_book_respond_get_contact_list_compat (EDataBook *book, guint32 opid, GError *error, const GSList *cards)
 {
 #if ! EDS_CHECK_VERSION (3,1,0)
-	GList *l = convert_slist_to_list (cards);
+	GList *l = convert_slist_to_list ((GSList *) cards);
 	e_data_book_respond_get_contact_list (book, opid, error, l);
 	g_list_free (l);
 #else



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