[evolution-data-server] added the implementation for e_cal_backend_store_get_path api.



commit b7094bf768080ba279c3fb28ad97c891726e1944
Author: Chenthill Palanisamy <pchenthill novell com>
Date:   Tue Jul 14 13:19:22 2009 +0530

    added the implementation for e_cal_backend_store_get_path api.

 calendar/libedata-cal/e-cal-backend-store.c |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)
---
diff --git a/calendar/libedata-cal/e-cal-backend-store.c b/calendar/libedata-cal/e-cal-backend-store.c
index 0d6d86f..4e934bc 100644
--- a/calendar/libedata-cal/e-cal-backend-store.c
+++ b/calendar/libedata-cal/e-cal-backend-store.c
@@ -210,6 +210,19 @@ e_cal_backend_store_init (ECalBackendStore *store)
 	priv->source_type = E_CAL_SOURCE_TYPE_EVENT;
 }
 
+const char *
+e_cal_backend_store_get_path (ECalBackendStore *store)
+{
+	ECalBackendStorePrivate *priv;
+
+	g_return_val_if_fail (store != NULL, NULL);
+	g_return_val_if_fail (E_IS_CAL_BACKEND_STORE (store), NULL);
+
+	priv = GET_PRIVATE(store);
+	
+	return priv->path;
+}
+
 gboolean
 e_cal_backend_store_load (ECalBackendStore *store)
 {



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