diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2002-05-17 02:04:00 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2002-05-17 02:04:00 +0800 |
commit | 3a868a57bb55512cf7315b3178d9557d6350be32 (patch) | |
tree | cfa6e6d85e1c77944ddd7e193d5a00682e587a03 /calendar/idl | |
parent | 48140af35f90d7ec4f994821a5265b1fe0159cfa (diff) | |
download | gsoc2013-evolution-3a868a57bb55512cf7315b3178d9557d6350be32.tar.gz gsoc2013-evolution-3a868a57bb55512cf7315b3178d9557d6350be32.tar.zst gsoc2013-evolution-3a868a57bb55512cf7315b3178d9557d6350be32.zip |
added support for CAL_CLIENT_OPEN_PERMISSION_DENIED error code.
2002-05-16 Rodrigo Moya <rodrigo@ximian.com>
* gui/gnome-cal.c (client_cal_opened_cb): added support for
CAL_CLIENT_OPEN_PERMISSION_DENIED error code.
(permission_error): new function to display 'Permission Denied'
error message when opening the calendar.
* gui/e-tasks.c: likewise.
* idl/evolution-calendar.idl: added PERMISSION_DENIED to Listener's
OpenStatus enumeration.
* cal-client/cal-client.c (cal_opened_cb): added code for retrieving
'Permission Denied' errors, and convert it to CalClientOpenStatus
values.
* pcs/cal-factory.c (open_backend): added code for informing of
'Permission Denied' errors.
svn path=/trunk/; revision=16933
Diffstat (limited to 'calendar/idl')
-rw-r--r-- | calendar/idl/evolution-calendar.idl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/calendar/idl/evolution-calendar.idl b/calendar/idl/evolution-calendar.idl index 08ad056c3b..9a7b0929dd 100644 --- a/calendar/idl/evolution-calendar.idl +++ b/calendar/idl/evolution-calendar.idl @@ -223,7 +223,8 @@ module Calendar { NOT_FOUND, /* Requested opening in only_if_exists mode * when the URI did not exist. */ - METHOD_NOT_SUPPORTED /* A method handler is not registered */ + METHOD_NOT_SUPPORTED, /* A method handler is not registered */ + PERMISSION_DENIED }; /* Return status when setting calendar mode */ |