diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-01-22 15:09:39 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 2000-01-22 15:09:39 +0800 |
commit | 101996359f684e0282f1261f92f54d5b10e1ddb3 (patch) | |
tree | 94006182b470ca2e6794e04c84613d4aec6d6156 /calendar/evolution-calendar.idl | |
parent | 84423c930ecc93ce93040bfd49e20c68670d4364 (diff) | |
download | gsoc2013-evolution-101996359f684e0282f1261f92f54d5b10e1ddb3.tar gsoc2013-evolution-101996359f684e0282f1261f92f54d5b10e1ddb3.tar.gz gsoc2013-evolution-101996359f684e0282f1261f92f54d5b10e1ddb3.tar.bz2 gsoc2013-evolution-101996359f684e0282f1261f92f54d5b10e1ddb3.tar.lz gsoc2013-evolution-101996359f684e0282f1261f92f54d5b10e1ddb3.tar.xz gsoc2013-evolution-101996359f684e0282f1261f92f54d5b10e1ddb3.tar.zst gsoc2013-evolution-101996359f684e0282f1261f92f54d5b10e1ddb3.zip |
Take in a GnomeVFSURI, not a string.
2000-01-22 Federico Mena Quintero <federico@helixcode.com>
* cal-backend.c (cal_backend_load): Take in a GnomeVFSURI, not a
string.
* cal-listener.c (Listener_cal_loaded): Pass the load status to
the signal.
(cal_listener_destroy): Better error checking.
(cal_listener_new): Better error checking.
* cal-listener.h (CalListenerLoadStatus): New enum for the load
status of a calendar.
(CalListenerClass): Added the status argument to the cal_loaded
signal.
* gnome-calendar.idl (cal_loaded): Added a load status code.
* cal-backend.h (CalBackendLoadStatus): Renamed from
CalBackendLoadResult.
svn path=/trunk/; revision=1607
Diffstat (limited to 'calendar/evolution-calendar.idl')
-rw-r--r-- | calendar/evolution-calendar.idl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/calendar/evolution-calendar.idl b/calendar/evolution-calendar.idl index 9ff87f62f6..390dfa1531 100644 --- a/calendar/evolution-calendar.idl +++ b/calendar/evolution-calendar.idl @@ -33,10 +33,16 @@ module Calendar { /* Listener for changes in a calendar */ interface Listener : Unknown { + /* Return status when loading a calendar; we need better error reporting */ + enum LoadStatus { + SUCESSS, + ERROR + }; + /* Called from a CalFactory when a calendar is initially loaded * or created. The listener must remember the cal object. */ - void cal_loaded (in Cal cal); + void cal_loaded (in LoadStatus status, in Cal cal); /* Called from a Calendar when an object is added */ void obj_added (in CalObj calobj); |