[evolution-kolab] Adapt to CamelStore API changes.



commit 093a00dba41f713aa22d4f48adbf7e1e2589a1ed
Author: Matthew Barnes <mbarnes redhat com>
Date:   Fri Jul 6 23:05:23 2012 -0400

    Adapt to CamelStore API changes.
    
    compare_folder_name() -> equal_folder_name()

 src/camel/camel-kolab-imapx-store.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/camel/camel-kolab-imapx-store.c b/src/camel/camel-kolab-imapx-store.c
index a5e4991..8225df8 100644
--- a/src/camel/camel-kolab-imapx-store.c
+++ b/src/camel/camel-kolab-imapx-store.c
@@ -554,7 +554,7 @@ kolab_imapx_store_name_hash (gconstpointer key)
 		return g_str_hash (key);
 }
 
-static gint
+static gboolean
 kolab_imapx_store_name_equal (gconstpointer a,
                               gconstpointer b)
 {
@@ -1064,7 +1064,7 @@ camel_kolab_imapx_store_class_init (CamelKolabIMAPXStoreClass *klass)
 
 	store_class = CAMEL_STORE_CLASS (klass);
 	store_class->hash_folder_name = kolab_imapx_store_name_hash;
-	store_class->compare_folder_name = kolab_imapx_store_name_equal;
+	store_class->equal_folder_name = kolab_imapx_store_name_equal;
 	store_class->free_folder_info = camel_store_free_folder_info_full;
 	store_class->get_folder_info_sync = kolab_imapx_store_get_folder_info_sync;
 	store_class->create_folder_sync = kolab_imapx_store_create_folder_sync;



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