Re: [evolution-patches] patch for sendObjects in e-d-s' calendar API
- From: Rodrigo Moya <rodrigo ximian com>
- To: JP Rosevear <jpr ximian com>
- Cc: evolution-patches lists ximian com
- Subject: Re: [evolution-patches] patch for sendObjects in e-d-s' calendar API
- Date: Tue, 17 Feb 2004 13:00:41 +0100
On Mon, 2004-02-16 at 09:19 -0500, JP Rosevear wrote:
> On Mon, 2004-02-16 at 06:33, Rodrigo Moya wrote:
> > On Thu, 2004-02-12 at 23:36 -0500, JP Rosevear wrote:
> >
> > > On Thu, 2004-02-12 at 07:14, Rodrigo Moya wrote:
> > > > Hi
> > > >
> > > > The attached patch adds a list of users to the sendObjects stuff for the
> > > > calendar, so that backends can notify clients about the users for which
> > > > they already took care (in IMIP/ITIP), as talked with JP on IRC.
> > >
> > > Ugh, I forgot the other nasty part - we have to pass back an icalendar
> > > object too in case something like autobooking happens.
> > >
> > hmm, why don't we do like we do for the receiveObjects method? That is,
> > receiveObjects also modifies some objects on the icalcomponent passed to
> > it, and notifies all modifications through the objectAdded/Modified
> > signals on the listener.
>
> Receive objects doesn't need to because it is storing things any how and
> can notify of updates via the usual notification methods. In 1.4 we
> used update objects to accomplish the same thing and it had no out
> parameter.
>
ok, then, updated patch attached.
cheers
? config.guess
? config.sub
? depcomp
? install-sh
? ltmain.sh
? missing
? mkinstalldirs
? ylwrap
? libical/src/libicalss/icalssyacc.output
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/ChangeLog,v
retrieving revision 1.191
diff -u -p -r1.191 ChangeLog
--- ChangeLog 12 Feb 2004 19:47:31 -0000 1.191
+++ ChangeLog 17 Feb 2004 11:56:09 -0000
@@ -1,3 +1,39 @@
+2004-02-17 Rodrigo Moya <rodrigo ximian com>
+
+ * idl/Evolution-DataServer-Calendar.idl: added new arguments to the
+ notifyObjectsSent method for backends to return the list of users and
+ events for which it operated.
+
+ * libedata-cal/e-data-cal.[ch] (e_data_cal_notify_objects_sent): added
+ new argument and call the listener's notifyObjectsSent method with
+ a GNOME_Evolution_Calendar_UserList.
+
+ * libedata-cal/e-cal-backend-sync.[ch] (e_cal_backend_sync_send_objects,
+ _e_cal_backend_send_objects): added new arguments.
+
+ * backends/file/e-cal-backend-file.c (e_cal_backend_file_send_objects):
+ * backends/http/e-cal-backend-http.c (e_cal_backend_http_send_objects):
+ * backends/contacts/e-cal-backend-contacts.c
+ (e_cal_backend_contacts_send_objects):
+ * backends/groupwise/e-cal-backend-groupwise.c
+ (e_cal_backend_groupwise_send_objects): adapted to changes in
+ ECalBackend/ECalBackendSync API.
+
+ * backends/file/e-cal-backend-file.c (e_cal_backend_file_receive_objects,
+ e_cal_backend_file_send_objects): removed wrong return statement.
+
+ * libecal/e-cal-marshal.list: added new marshaller.
+
+ * libecal/e-cal.[ch] (e_cal_send_objects): get the user list from the
+ operation's result.
+ (cal_objects_sent_cb): added the new arguments and copy them to the
+ operation's result.
+
+ * libecal/e-cal-listener.[ch]: added new arguments to "send_objects" signal.
+ (impl_notifyObjectsSent): added UserList argument to CORBA method, and
+ convert the CORBA user list to a GList to be passed to the signal handlers.
+ (e_cal_listener_class_init): added new arguments to "send_objects" signal.
+
2004-02-12 Chris Toshok <toshok ximian com>
* backends/contacts/e-cal-backend-contacts.c (book_record_new):
Index: backends/contacts/e-cal-backend-contacts.c
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/backends/contacts/e-cal-backend-contacts.c,v
retrieving revision 1.4
diff -u -p -r1.4 e-cal-backend-contacts.c
--- backends/contacts/e-cal-backend-contacts.c 12 Feb 2004 19:47:33 -0000 1.4
+++ backends/contacts/e-cal-backend-contacts.c 17 Feb 2004 11:56:10 -0000
@@ -586,8 +586,10 @@ e_cal_backend_contacts_receive_objects (
static ECalBackendSyncStatus
e_cal_backend_contacts_send_objects (ECalBackendSync *backend, EDataCal *cal,
- const char *calobj)
+ const char *calobj, GList **users, char **modified_calobj)
{
+ *users = NULL;
+ *modified_calobj = NULL;
/* TODO: Investigate this */
return GNOME_Evolution_Calendar_Success;
}
Index: backends/file/e-cal-backend-file.c
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/backends/file/e-cal-backend-file.c,v
retrieving revision 1.23
diff -u -p -r1.23 e-cal-backend-file.c
--- backends/file/e-cal-backend-file.c 10 Feb 2004 14:53:10 -0000 1.23
+++ backends/file/e-cal-backend-file.c 17 Feb 2004 11:56:11 -0000
@@ -2157,10 +2157,12 @@ e_cal_backend_file_receive_objects (ECal
}
static ECalBackendSyncStatus
-e_cal_backend_file_send_objects (ECalBackendSync *backend, EDataCal *cal, const char *calobj)
+e_cal_backend_file_send_objects (ECalBackendSync *backend, EDataCal *cal, const char *calobj, GList **users,
+ char **modified_calobj)
{
- /* FIXME Put in a util routine to send stuff via email */
-
+ *users = NULL;
+ *modified_calobj = NULL;
+
return GNOME_Evolution_Calendar_Success;
}
Index: backends/groupwise/e-cal-backend-groupwise.c
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/backends/groupwise/e-cal-backend-groupwise.c,v
retrieving revision 1.47
diff -u -p -r1.47 e-cal-backend-groupwise.c
--- backends/groupwise/e-cal-backend-groupwise.c 6 Feb 2004 16:31:09 -0000 1.47
+++ backends/groupwise/e-cal-backend-groupwise.c 17 Feb 2004 11:56:11 -0000
@@ -1038,8 +1038,12 @@ e_cal_backend_groupwise_receive_objects
}
static ECalBackendSyncStatus
-e_cal_backend_groupwise_send_objects (ECalBackendSync *backend, EDataCal *cal, const char *calobj)
+e_cal_backend_groupwise_send_objects (ECalBackendSync *backend, EDataCal *cal, const char *calobj, GList **users,
+ char **modified_calobj)
{
+ /* FIXME */
+ *users = NULL;
+ *modified_calobj = NULL;
return GNOME_Evolution_Calendar_OtherError;
}
Index: backends/http/e-cal-backend-http.c
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/backends/http/e-cal-backend-http.c,v
retrieving revision 1.13
diff -u -p -r1.13 e-cal-backend-http.c
--- backends/http/e-cal-backend-http.c 3 Feb 2004 22:39:12 -0000 1.13
+++ backends/http/e-cal-backend-http.c 17 Feb 2004 11:56:12 -0000
@@ -745,7 +745,8 @@ e_cal_backend_http_receive_objects (ECal
}
static ECalBackendSyncStatus
-e_cal_backend_http_send_objects (ECalBackendSync *backend, EDataCal *cal, const char *calobj)
+e_cal_backend_http_send_objects (ECalBackendSync *backend, EDataCal *cal, const char *calobj, GList **users,
+ char **modified_calobj)
{
ECalBackendHttp *cbhttp;
ECalBackendHttpPrivate *priv;
@@ -753,6 +754,9 @@ e_cal_backend_http_send_objects (ECalBac
cbhttp = E_CAL_BACKEND_HTTP (backend);
priv = cbhttp->priv;
+ *users = NULL;
+ *modified_calobj = NULL;
+
return GNOME_Evolution_Calendar_PermissionDenied;
}
Index: idl/Evolution-DataServer-Calendar.idl
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/idl/Evolution-DataServer-Calendar.idl,v
retrieving revision 1.4
diff -u -p -r1.4 Evolution-DataServer-Calendar.idl
--- idl/Evolution-DataServer-Calendar.idl 27 Jan 2004 18:51:14 -0000 1.4
+++ idl/Evolution-DataServer-Calendar.idl 17 Feb 2004 11:56:12 -0000
@@ -235,7 +235,7 @@ module Calendar {
oneway void notifyAlarmDiscarded (in CallStatus status);
oneway void notifyObjectsReceived (in CallStatus status);
- oneway void notifyObjectsSent (in CallStatus status);
+ oneway void notifyObjectsSent (in CallStatus status, in UserList users, in CalObj calobj);
oneway void notifyDefaultObjectRequested (in CallStatus status, in CalObj object);
oneway void notifyObjectRequested (in CallStatus status, in CalObj object);
Index: libecal/e-cal-listener.c
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/libecal/e-cal-listener.c,v
retrieving revision 1.7
diff -u -p -r1.7 e-cal-listener.c
--- libecal/e-cal-listener.c 1 Feb 2004 20:51:23 -0000 1.7
+++ libecal/e-cal-listener.c 17 Feb 2004 11:56:12 -0000
@@ -309,18 +309,32 @@ impl_notifyObjectsReceived (PortableServ
static void
impl_notifyObjectsSent (PortableServer_Servant servant,
GNOME_Evolution_Calendar_CallStatus status,
+ GNOME_Evolution_Calendar_UserList *user_list,
+ const CORBA_char *modified_calobj,
CORBA_Environment *ev)
{
ECalListener *listener;
ECalListenerPrivate *priv;
-
+ int i;
+ icalcomponent *icalcomp = NULL;
+ GList *users = NULL;
+
listener = E_CAL_LISTENER (bonobo_object_from_servant (servant));
priv = listener->priv;
if (!priv->notify)
return;
- g_signal_emit (G_OBJECT (listener), signals[SEND_OBJECTS], 0, convert_status (status));
+ for (i = 0; i < user_list->_length; i++)
+ users = g_list_append (users, g_strdup (user_list->_buffer[i]));
+
+ icalcomp = icalparser_parse_string (modified_calobj);
+
+ g_signal_emit (G_OBJECT (listener), signals[SEND_OBJECTS], 0, convert_status (status), users, icalcomp);
+
+ g_list_foreach (users, (GFunc) g_free, NULL);
+ g_list_free (users);
+ icalcomponent_free (icalcomp);
}
static void
@@ -829,8 +843,8 @@ e_cal_listener_class_init (ECalListenerC
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (ECalListenerClass, send_objects),
NULL, NULL,
- e_cal_marshal_VOID__INT,
- G_TYPE_NONE, 1, G_TYPE_INT);
+ e_cal_marshal_VOID__INT_POINTER_POINTER,
+ G_TYPE_NONE, 3, G_TYPE_INT, G_TYPE_POINTER, G_TYPE_POINTER);
signals[DEFAULT_OBJECT] =
g_signal_new ("default_object",
G_TYPE_FROM_CLASS (klass),
Index: libecal/e-cal-listener.h
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/libecal/e-cal-listener.h,v
retrieving revision 1.4
diff -u -p -r1.4 e-cal-listener.h
--- libecal/e-cal-listener.h 1 Feb 2004 20:51:23 -0000 1.4
+++ libecal/e-cal-listener.h 17 Feb 2004 11:56:12 -0000
@@ -67,7 +67,7 @@ typedef struct {
void (*discard_alarm) (ECalListener *listener, ECalendarStatus status);
void (*receive_objects) (ECalListener *listener, ECalendarStatus status);
- void (*send_objects) (ECalListener *listener, ECalendarStatus status);
+ void (*send_objects) (ECalListener *listener, ECalendarStatus status, GList *users, icalcomponent *modified_icalcomp);
void (*default_object) (ECalListener *listener, ECalendarStatus status, const char *object);
void (*object) (ECalListener *listener, ECalendarStatus status, const char *object);
Index: libecal/e-cal-marshal.list
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/libecal/e-cal-marshal.list,v
retrieving revision 1.2
diff -u -p -r1.2 e-cal-marshal.list
--- libecal/e-cal-marshal.list 1 Feb 2004 20:51:23 -0000 1.2
+++ libecal/e-cal-marshal.list 17 Feb 2004 11:56:12 -0000
@@ -4,6 +4,7 @@ NONE:STRING
NONE:INT,STRING
NONE:INT,BOOL
NONE:INT,POINTER
+NONE:INT,POINTER,POINTER
NONE:STRING,INT
NONE:INT,INT
NONE:ENUM,ENUM
Index: libecal/e-cal.c
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/libecal/e-cal.c,v
retrieving revision 1.44
diff -u -p -r1.44 e-cal.c
--- libecal/e-cal.c 6 Feb 2004 17:19:45 -0000 1.44
+++ libecal/e-cal.c 17 Feb 2004 11:56:14 -0000
@@ -48,6 +48,7 @@ typedef struct {
GList *list;
gboolean bool;
char *string;
+ icalcomponent *icalcomp;
ECalView *query;
ECalViewListener *listener;
@@ -606,7 +607,7 @@ cal_objects_received_cb (ECalListener *l
}
static void
-cal_objects_sent_cb (ECalListener *listener, ECalendarStatus status, gpointer data)
+cal_objects_sent_cb (ECalListener *listener, ECalendarStatus status, GList *users, icalcomponent *modified_icalcomp, gpointer data)
{
ECal *ecal = data;
ECalendarOp *op;
@@ -621,6 +622,11 @@ cal_objects_sent_cb (ECalListener *liste
g_mutex_lock (op->mutex);
op->status = status;
+ op->list = g_list_copy (users);
+ if (modified_icalcomp)
+ op->icalcomp = icalcomponent_new_clone (modified_icalcomp);
+ else
+ op->icalcomp = NULL;
g_cond_signal (op->cond);
@@ -3468,7 +3474,7 @@ e_cal_receive_objects (ECal *ecal, icalc
}
gboolean
-e_cal_send_objects (ECal *ecal, icalcomponent *icalcomp, GError **error)
+e_cal_send_objects (ECal *ecal, icalcomponent *icalcomp, GList **users, icalcomponent **modified_icalcomp, GError **error)
{
ECalPrivate *priv;
CORBA_Environment ev;
@@ -3520,6 +3526,8 @@ e_cal_send_objects (ECal *ecal, icalcomp
g_cond_wait (our_op->cond, our_op->mutex);
status = our_op->status;
+ *users = our_op->list;
+ *modified_icalcomp = our_op->icalcomp;
e_calendar_remove_op (ecal, our_op);
g_mutex_unlock (our_op->mutex);
Index: libecal/e-cal.h
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/libecal/e-cal.h,v
retrieving revision 1.16
diff -u -p -r1.16 e-cal.h
--- libecal/e-cal.h 4 Feb 2004 21:31:37 -0000 1.16
+++ libecal/e-cal.h 17 Feb 2004 11:56:14 -0000
@@ -168,7 +168,7 @@ gboolean e_cal_remove_object_with_mod (E
gboolean e_cal_discard_alarm (ECal *ecal, ECalComponent *comp, const char *auid, GError **error);
gboolean e_cal_receive_objects (ECal *ecal, icalcomponent *icalcomp, GError **error);
-gboolean e_cal_send_objects (ECal *ecal, icalcomponent *icalcomp, GError **error);
+gboolean e_cal_send_objects (ECal *ecal, icalcomponent *icalcomp, GList **users, icalcomponent **modified_icalcomp, GError **error);
gboolean e_cal_get_timezone (ECal *ecal, const char *tzid, icaltimezone **zone, GError **error);
gboolean e_cal_add_timezone (ECal *ecal, icaltimezone *izone, GError **error);
Index: libedata-cal/e-cal-backend-sync.c
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/libedata-cal/e-cal-backend-sync.c,v
retrieving revision 1.6
diff -u -p -r1.6 e-cal-backend-sync.c
--- libedata-cal/e-cal-backend-sync.c 10 Jan 2004 22:45:38 -0000 1.6
+++ libedata-cal/e-cal-backend-sync.c 17 Feb 2004 11:56:14 -0000
@@ -158,13 +158,14 @@ e_cal_backend_sync_receive_objects (ECal
}
ECalBackendSyncStatus
-e_cal_backend_sync_send_objects (ECalBackendSync *backend, EDataCal *cal, const char *calobj)
+e_cal_backend_sync_send_objects (ECalBackendSync *backend, EDataCal *cal, const char *calobj, GList **users,
+ char **modified_calobj)
{
g_return_val_if_fail (backend && E_IS_CAL_BACKEND_SYNC (backend), GNOME_Evolution_Calendar_OtherError);
g_assert (E_CAL_BACKEND_SYNC_GET_CLASS (backend)->send_objects_sync);
- return (* E_CAL_BACKEND_SYNC_GET_CLASS (backend)->send_objects_sync) (backend, cal, calobj);
+ return (* E_CAL_BACKEND_SYNC_GET_CLASS (backend)->send_objects_sync) (backend, cal, calobj, users, modified_calobj);
}
ECalBackendSyncStatus
@@ -401,10 +402,15 @@ static void
_e_cal_backend_send_objects (ECalBackend *backend, EDataCal *cal, const char *calobj)
{
ECalBackendSyncStatus status;
+ GList *users = NULL;
+ char *modified_calobj = NULL;
- status = e_cal_backend_sync_send_objects (E_CAL_BACKEND_SYNC (backend), cal, calobj);
+ status = e_cal_backend_sync_send_objects (E_CAL_BACKEND_SYNC (backend), cal, calobj, &users, &modified_calobj);
+ e_data_cal_notify_objects_sent (cal, status, users, modified_calobj);
- e_data_cal_notify_objects_sent (cal, status);
+ g_list_foreach (users, (GFunc) g_free, NULL);
+ g_list_free (users);
+ g_free (modified_calobj);
}
static void
Index: libedata-cal/e-cal-backend-sync.h
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/libedata-cal/e-cal-backend-sync.h,v
retrieving revision 1.4
diff -u -p -r1.4 e-cal-backend-sync.h
--- libedata-cal/e-cal-backend-sync.h 19 Dec 2003 16:29:33 -0000 1.4
+++ libedata-cal/e-cal-backend-sync.h 17 Feb 2004 11:56:14 -0000
@@ -49,7 +49,8 @@ struct _ECalBackendSyncClass {
ECalBackendSyncStatus (*discard_alarm_sync) (ECalBackendSync *backend, EDataCal *cal, const char *uid, const char *auid);
ECalBackendSyncStatus (*receive_objects_sync) (ECalBackendSync *backend, EDataCal *cal, const char *calobj);
- ECalBackendSyncStatus (*send_objects_sync) (ECalBackendSync *backend, EDataCal *cal, const char *calobj);
+ ECalBackendSyncStatus (*send_objects_sync) (ECalBackendSync *backend, EDataCal *cal, const char *calobj, GList **users,
+ char **modified_calobj);
ECalBackendSyncStatus (*get_default_object_sync) (ECalBackendSync *backend, EDataCal *cal, char **object);
ECalBackendSyncStatus (*get_object_sync) (ECalBackendSync *backend, EDataCal *cal, const char *uid, const char *rid, char **object);
@@ -116,8 +117,10 @@ ECalBackendSyncStatus e_cal_backend_sync
EDataCal *cal,
const char *calobj);
ECalBackendSyncStatus e_cal_backend_sync_send_objects (ECalBackendSync *backend,
- EDataCal *cal,
- const char *calobj);
+ EDataCal *cal,
+ const char *calobj,
+ GList **users,
+ char **modified_calobj);
ECalBackendSyncStatus e_cal_backend_sync_get_default_object (ECalBackendSync *backend,
EDataCal *cal,
char **object);
Index: libedata-cal/e-cal-backend.c
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/libedata-cal/e-cal-backend.c,v
retrieving revision 1.4
diff -u -p -r1.4 e-cal-backend.c
--- libedata-cal/e-cal-backend.c 19 Dec 2003 16:29:33 -0000 1.4
+++ libedata-cal/e-cal-backend.c 17 Feb 2004 11:56:15 -0000
@@ -852,7 +852,7 @@ e_cal_backend_receive_objects (ECalBacke
g_return_if_fail (calobj != NULL);
g_assert (CLASS (backend)->receive_objects != NULL);
- return (* CLASS (backend)->receive_objects) (backend, cal, calobj);
+ (* CLASS (backend)->receive_objects) (backend, cal, calobj);
}
void
@@ -863,7 +863,7 @@ e_cal_backend_send_objects (ECalBackend
g_return_if_fail (calobj != NULL);
g_assert (CLASS (backend)->send_objects != NULL);
- return (* CLASS (backend)->send_objects) (backend, cal, calobj);
+ (* CLASS (backend)->send_objects) (backend, cal, calobj);
}
/**
Index: libedata-cal/e-data-cal.c
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/libedata-cal/e-data-cal.c,v
retrieving revision 1.5
diff -u -p -r1.5 e-data-cal.c
--- libedata-cal/e-data-cal.c 19 Dec 2003 16:29:33 -0000 1.5
+++ libedata-cal/e-data-cal.c 17 Feb 2004 11:56:15 -0000
@@ -888,10 +888,11 @@ e_data_cal_notify_alarm_discarded (EData
}
void
-e_data_cal_notify_objects_sent (EDataCal *cal, GNOME_Evolution_Calendar_CallStatus status)
+e_data_cal_notify_objects_sent (EDataCal *cal, GNOME_Evolution_Calendar_CallStatus status, GList *users, const char *calobj)
{
EDataCalPrivate *priv;
CORBA_Environment ev;
+ GNOME_Evolution_Calendar_UserList *corba_users;
g_return_if_fail (cal != NULL);
g_return_if_fail (E_IS_DATA_CAL (cal));
@@ -899,13 +900,25 @@ e_data_cal_notify_objects_sent (EDataCal
priv = cal->priv;
g_return_if_fail (priv->listener != CORBA_OBJECT_NIL);
+ corba_users = GNOME_Evolution_Calendar_UserList__alloc ();
+ corba_users->_length = g_list_length (users);
+ if (users) {
+ GList *l;
+ int n;
+
+ corba_users->_buffer = CORBA_sequence_GNOME_Evolution_Calendar_User_allocbuf (corba_users->_length);
+ for (l = users, n = 0; l != NULL; l = l->next, n++)
+ corba_users->_buffer[n] = CORBA_string_dup (l->data);
+ }
+
CORBA_exception_init (&ev);
- GNOME_Evolution_Calendar_CalListener_notifyObjectsSent (priv->listener, status, &ev);
+ GNOME_Evolution_Calendar_CalListener_notifyObjectsSent (priv->listener, status, corba_users, calobj, &ev);
if (BONOBO_EX (&ev))
g_message (G_STRLOC ": could not notify the listener of objects sent");
- CORBA_exception_free (&ev);
+ CORBA_exception_free (&ev);
+ CORBA_free (corba_users);
}
void
Index: libedata-cal/e-data-cal.h
===================================================================
RCS file: /cvs/gnome/evolution-data-server/calendar/libedata-cal/e-data-cal.h,v
retrieving revision 1.4
diff -u -p -r1.4 e-data-cal.h
--- libedata-cal/e-data-cal.h 17 Nov 2003 15:37:34 -0000 1.4
+++ libedata-cal/e-data-cal.h 17 Feb 2004 11:56:15 -0000
@@ -87,7 +87,8 @@ void e_data_cal_notify_object_removed (
void e_data_cal_notify_alarm_discarded (EDataCal *cal, GNOME_Evolution_Calendar_CallStatus status);
void e_data_cal_notify_objects_received (EDataCal *cal, GNOME_Evolution_Calendar_CallStatus status);
-void e_data_cal_notify_objects_sent (EDataCal *cal, GNOME_Evolution_Calendar_CallStatus status);
+void e_data_cal_notify_objects_sent (EDataCal *cal, GNOME_Evolution_Calendar_CallStatus status, GList *users,
+ const char *calobj);
void e_data_cal_notify_default_object (EDataCal *cal, GNOME_Evolution_Calendar_CallStatus status,
const char *object);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]