aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/pcs/cal.c
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/pcs/cal.c
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/pcs/cal.c')
-rw-r--r--calendar/pcs/cal.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/calendar/pcs/cal.c b/calendar/pcs/cal.c
index 2651f0898e..deaf44ec92 100644
--- a/calendar/pcs/cal.c
+++ b/calendar/pcs/cal.c
@@ -221,7 +221,6 @@ impl_Cal_getObjectList (PortableServer_Servant servant,
/* Cal::getChanges method */
static void
impl_Cal_getChanges (PortableServer_Servant servant,
- GNOME_Evolution_Calendar_CalObjType type,
const CORBA_char *change_id,
CORBA_Environment *ev)
{
@@ -231,7 +230,7 @@ impl_Cal_getChanges (PortableServer_Servant servant,
cal = CAL (bonobo_object_from_servant (servant));
priv = cal->priv;
- cal_backend_get_changes (priv->backend, cal, type, change_id);
+ cal_backend_get_changes (priv->backend, cal, change_id);
}
/* Cal::getFreeBusy method */