aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/pcs/cal-backend.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-backend.c
parent53f60e8802c75c9272cccc46f316f1fd47ef44b0 (diff)
downloadgsoc2013-evolution-56d094b8c063fa7edf5a91f8ca14afec59bdb12c.tar.gz
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-backend.c')
-rw-r--r--calendar/pcs/cal-backend.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/calendar/pcs/cal-backend.c b/calendar/pcs/cal-backend.c
index 3d70c192b5..7b299d80bf 100644
--- a/calendar/pcs/cal-backend.c
+++ b/calendar/pcs/cal-backend.c
@@ -709,7 +709,6 @@ cal_backend_get_free_busy (CalBackend *backend, Cal *cal, GList *users, time_t s
/**
* cal_backend_get_changes:
* @backend: A calendar backend
- * @type: Bitmask with types of objects to return.
* @change_id: A unique uid for the callers change list
*
* Builds a sequence of objects and the type of change that occurred on them since
@@ -718,14 +717,14 @@ cal_backend_get_free_busy (CalBackend *backend, Cal *cal, GList *users, time_t s
* Return value: A list of the objects that changed and the type of change
**/
void
-cal_backend_get_changes (CalBackend *backend, Cal *cal, CalObjType type, const char *change_id)
+cal_backend_get_changes (CalBackend *backend, Cal *cal, const char *change_id)
{
g_return_if_fail (backend != NULL);
g_return_if_fail (IS_CAL_BACKEND (backend));
g_return_if_fail (change_id != NULL);
g_assert (CLASS (backend)->get_changes != NULL);
- (* CLASS (backend)->get_changes) (backend, cal, type, change_id);
+ (* CLASS (backend)->get_changes) (backend, cal, change_id);
}
/**