diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-02-17 17:21:20 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-02-17 17:21:20 +0800 |
commit | cf16aa4fb112337616d20f4f2f9c2512cbe5e82f (patch) | |
tree | e8e3eb3c798e3a2492a9f8c1a045b85a04479d99 /calendar/cal-backend.h | |
parent | 514b2de963c04ce463ff84a54933673be284ad45 (diff) | |
download | gsoc2013-evolution-cf16aa4fb112337616d20f4f2f9c2512cbe5e82f.tar gsoc2013-evolution-cf16aa4fb112337616d20f4f2f9c2512cbe5e82f.tar.gz gsoc2013-evolution-cf16aa4fb112337616d20f4f2f9c2512cbe5e82f.tar.bz2 gsoc2013-evolution-cf16aa4fb112337616d20f4f2f9c2512cbe5e82f.tar.lz gsoc2013-evolution-cf16aa4fb112337616d20f4f2f9c2512cbe5e82f.tar.xz gsoc2013-evolution-cf16aa4fb112337616d20f4f2f9c2512cbe5e82f.tar.zst gsoc2013-evolution-cf16aa4fb112337616d20f4f2f9c2512cbe5e82f.zip |
Implemented.
2000-02-17 Federico Mena Quintero <federico@helixcode.com>
* cal-client.c (cal_client_remove_object): Implemented.
* cal.c (cal_notify_remove): Implemented.
(Cal_remove_object): Implemented.
(cal_get_epv): Fill in the remove_object field in the epv.
* cal-backend.c (cal_backend_remove_object): Implemented.
(notify_remove): New function to notify clients that an object was
removed.
svn path=/trunk/; revision=1821
Diffstat (limited to 'calendar/cal-backend.h')
-rw-r--r-- | calendar/cal-backend.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/cal-backend.h b/calendar/cal-backend.h index fab83e4b82..66b1b8f5e3 100644 --- a/calendar/cal-backend.h +++ b/calendar/cal-backend.h @@ -78,7 +78,7 @@ GList *cal_backend_get_events_in_range (CalBackend *backend, time_t start, time_ gboolean cal_backend_update_object (CalBackend *backend, const char *uid, const char *calobj); -void cal_backend_remove_object (CalBackend *backend, const char *uid); +gboolean cal_backend_remove_object (CalBackend *backend, const char *uid); |