~ubuntu-branches/ubuntu/saucy/evolution-data-server/saucy

« back to all changes in this revision

Viewing changes to calendar/libedata-cal/e-cal-backend-sync.c

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-10-08 12:58:16 UTC
  • mfrom: (181.1.7 quantal)
  • Revision ID: package-import@ubuntu.com-20121008125816-i3n76e8c0m64e7xp
Tags: 3.6.0-0ubuntu2
* Fix LP: #1038047 part 1 - Don't abort in e_source_registry_new* when a
  problem occurs connecting to the Dbus service
  - add debian/patches/dont-abort-in-e_source_registry_new.patch
  - update debian/patches/series
* Fix LP: #1038047 part 2 - libedataserver depends on
  evolution-data-server-common to ensure that the GSettings schemas are
  present
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
296
296
 * @error: Out parameter for a #GError.
297
297
 *
298
298
 * Calls the create_objects_sync method on the given backend.
 
299
 *
 
300
 * Since: 3.6
299
301
 */
300
302
void
301
303
e_cal_backend_sync_create_objects (ECalBackendSync *backend,
326
328
 * @error: Out parameter for a #GError.
327
329
 *
328
330
 * Calls the modify_objects_sync method on the given backend.
 
331
 *
 
332
 * Since: 3.6
329
333
 */
330
334
void
331
335
e_cal_backend_sync_modify_objects (ECalBackendSync *backend,
332
 
                                                                   EDataCal *cal,
333
 
                                                                   GCancellable *cancellable,
334
 
                                                                   const GSList *calobjs,
335
 
                                                                   CalObjModType mod,
336
 
                                                                   GSList **old_components,
337
 
                                                                   GSList **new_components,
338
 
                                                                   GError **error)
 
336
                                   EDataCal *cal,
 
337
                                   GCancellable *cancellable,
 
338
                                   const GSList *calobjs,
 
339
                                   CalObjModType mod,
 
340
                                   GSList **old_components,
 
341
                                   GSList **new_components,
 
342
                                   GError **error)
339
343
{
340
344
        e_return_data_cal_error_if_fail (backend && E_IS_CAL_BACKEND_SYNC (backend), InvalidArg);
341
345
        e_return_data_cal_error_if_fail (E_CAL_BACKEND_SYNC_GET_CLASS (backend)->modify_objects_sync != NULL, UnsupportedMethod);
358
362
 * @error: Out parameter for a #GError.
359
363
 *
360
364
 * Calls the remove_objects_sync method on the given backend.
 
365
 *
 
366
 * Since: 3.6
361
367
 */
362
368
void
363
369
e_cal_backend_sync_remove_objects (ECalBackendSync *backend,