aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal-client
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2003-10-24 23:00:11 +0800
committerDan Winship <danw@src.gnome.org>2003-10-24 23:00:11 +0800
commit56d094b8c063fa7edf5a91f8ca14afec59bdb12c (patch)
tree6e43299f718911f28b64bb7f09ba3d7cbcdb5851 /calendar/cal-client
parent53f60e8802c75c9272cccc46f316f1fd47ef44b0 (diff)
downloadgsoc2013-evolution-56d094b8c063fa7edf5a91f8ca14afec59bdb12c.tar
gsoc2013-evolution-56d094b8c063fa7edf5a91f8ca14afec59bdb12c.tar.gz
gsoc2013-evolution-56d094b8c063fa7edf5a91f8ca14afec59bdb12c.tar.bz2
gsoc2013-evolution-56d094b8c063fa7edf5a91f8ca14afec59bdb12c.tar.lz
gsoc2013-evolution-56d094b8c063fa7edf5a91f8ca14afec59bdb12c.tar.xz
gsoc2013-evolution-56d094b8c063fa7edf5a91f8ca14afec59bdb12c.tar.zst
gsoc2013-evolution-56d094b8c063fa7edf5a91f8ca14afec59bdb12c.zip
Remove type arg
* cal-client/cal-client.c (cal_client_get_changes): Remove type arg * conduits/calendar/calendar-conduit.c (pre_sync, post_sync): Update for that * conduits/todo/todo-conduit.c (pre_sync, post_sync): Likewise * idl/evolution-calendar.idl (getChanges): Remove type arg. * pcs/cal.c (impl_Cal_getChanges): Likewise * pcs/cal-backend.c (cal_backend_get_changes): Likewise * pcs/cal-backend-sync.c (cal_backend_sync_get_changes): Likewise * pcs/cal-backend-file.c (cal_backend_file_get_changes): Update for that svn path=/trunk/; revision=23059
Diffstat (limited to 'calendar/cal-client')
-rw-r--r--calendar/cal-client/cal-client.c4
-rw-r--r--calendar/cal-client/cal-client.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/calendar/cal-client/cal-client.c b/calendar/cal-client/cal-client.c
index 91242a20c5..f69567b90e 100644
--- a/calendar/cal-client/cal-client.c
+++ b/calendar/cal-client/cal-client.c
@@ -2240,7 +2240,7 @@ cal_client_resolve_tzid_cb (const char *tzid, gpointer data)
}
gboolean
-cal_client_get_changes (CalClient *client, CalObjType type, const char *change_id, GList **changes, GError **error)
+cal_client_get_changes (CalClient *client, const char *change_id, GList **changes, GError **error)
{
CORBA_Environment ev;
ECalendarOp *our_op;
@@ -2270,7 +2270,7 @@ cal_client_get_changes (CalClient *client, CalObjType type, const char *change_i
CORBA_exception_init (&ev);
- GNOME_Evolution_Calendar_Cal_getChanges (client->priv->cal, type, change_id, &ev);
+ GNOME_Evolution_Calendar_Cal_getChanges (client->priv->cal, change_id, &ev);
if (BONOBO_EX (&ev)) {
e_calendar_remove_op (client, our_op);
diff --git a/calendar/cal-client/cal-client.h b/calendar/cal-client/cal-client.h
index 277522f097..9491c73fa3 100644
--- a/calendar/cal-client/cal-client.h
+++ b/calendar/cal-client/cal-client.h
@@ -155,7 +155,7 @@ gboolean cal_client_get_object (CalClient *client,
icalcomponent **icalcomp,
GError **error);
-gboolean cal_client_get_changes (CalClient *client, CalObjType type, const char *change_id, GList **changes, GError **error);
+gboolean cal_client_get_changes (CalClient *client, const char *change_id, GList **changes, GError **error);
gboolean cal_client_get_object_list (CalClient *client, const char *query, GList **objects, GError **error);
gboolean cal_client_get_object_list_as_comp (CalClient *client, const char *query, GList **objects, GError **error);