[evolution-patches] EDS Patch
- From: JP Rosevear <jpr ximian com>
- To: evolution-patches ximian com
- Subject: [evolution-patches] EDS Patch
- Date: Fri, 26 Mar 2004 10:40:29 -0500
I committed this unintentionally, I can revert if necessary.
-JP
--
JP Rosevear <jpr ximian com>
Ximian, Inc.
? libecal/old.c
? libical/src/libicalss/icalssyacc.output
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/ChangeLog,v
retrieving revision 1.228
retrieving revision 1.229
diff -u -r1.228 -r1.229
--- ChangeLog 26 Mar 2004 10:58:16 -0000 1.228
+++ ChangeLog 26 Mar 2004 15:44:12 -0000 1.229
@@ -1,3 +1,9 @@
+2004-03-26 JP Rosevear <jpr ximian com>
+
+ * libecal/e-cal.h: add proto
+
+ * libecal/e-cal.c (e_cal_get_source_type): accessor
+
2004-03-26 Rodrigo Moya <rodrigo ximian com>
* backends/groupwise/e-cal-backend-groupwise.c
Index: libecal/e-cal.c
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/libecal/e-cal.c,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- libecal/e-cal.c 19 Mar 2004 13:05:35 -0000 1.50
+++ libecal/e-cal.c 26 Mar 2004 15:44:13 -0000 1.51
@@ -1747,6 +1747,18 @@
return NULL;
}
+ECalSourceType
+e_cal_get_source_type (ECal *ecal)
+{
+ ECalPrivate *priv;
+
+ g_return_val_if_fail (ecal != NULL, E_CAL_SOURCE_TYPE_LAST);
+ g_return_val_if_fail (E_IS_CAL (ecal), E_CAL_SOURCE_TYPE_LAST);
+
+ priv = ecal->priv;
+
+ return priv->type;
+}
/**
* e_cal_get_load_state:
Index: libecal/e-cal.h
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/libecal/e-cal.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- libecal/e-cal.h 1 Mar 2004 15:45:59 -0000 1.17
+++ libecal/e-cal.h 26 Mar 2004 15:44:13 -0000 1.18
@@ -113,6 +113,7 @@
GList *e_cal_uri_list (ECal *ecal, CalMode mode);
+ECalSourceType e_cal_get_source_type (ECal *ecal);
ECalLoadState e_cal_get_load_state (ECal *ecal);
ESource *e_cal_get_source (ECal *ecal);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]