[evolution-kolab/ek-wip-porting] CamelIMAPXExtdStore: reflect API change in CamelIMAPXExtdConnManager



commit 2b78d6ea3a49cf1ca2ee97fa857df1979ae271b4
Author: Christian Hilberg <hilberg kernelconcepts de>
Date:   Fri Mar 9 18:03:52 2012 +0100

    CamelIMAPXExtdStore: reflect API change in CamelIMAPXExtdConnManager
    
    * CamelIMAPXExtdConnManager::get_connection() is now virtualized
    * call it via camel_imapx_conn_manager_get_connection()

 src/camel/providers/imapx/camel-imapx-extd-store.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/src/camel/providers/imapx/camel-imapx-extd-store.c b/src/camel/providers/imapx/camel-imapx-extd-store.c
index e12690f..0587256 100644
--- a/src/camel/providers/imapx/camel-imapx-extd-store.c
+++ b/src/camel/providers/imapx/camel-imapx-extd-store.c
@@ -169,7 +169,7 @@ extd_store_get_folder_offline (CamelStore *self,
 		storage_path = g_build_filename (user_cache_dir, "folders", NULL);
 		folder_dir = imapx_path_to_physical (storage_path, folder_name);
 		g_free (storage_path);
-		/* FIXME (create CamelIMAPXExtdFolder) */
+
 		new_folder = CAMEL_FOLDER (camel_imapx_extd_folder_new (myself,
 		                                                        folder_dir,
 		                                                        folder_name,
@@ -554,10 +554,10 @@ imapx_extd_store_get_server (CamelIMAPXStore *self,
 
 	camel_service_lock (CAMEL_SERVICE (self), CAMEL_SERVICE_REC_CONNECT_LOCK);
 
-	server = camel_imapx_extd_conn_manager_get_connection (self->con_man,
-	                                                       foldername,
-	                                                       cancellable,
-	                                                       &tmp_err);
+	server = camel_imapx_conn_manager_get_connection (self->con_man,
+	                                                  foldername,
+	                                                  cancellable,
+	                                                  &tmp_err);
 
 	camel_service_unlock (CAMEL_SERVICE (self), CAMEL_SERVICE_REC_CONNECT_LOCK);
 



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