diff options
author | JP Rosevear <jpr@ximian.com> | 2003-10-23 21:55:00 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-10-23 21:55:00 +0800 |
commit | 5fa4b831a798a0aabfdbd46903dbed9b1bde7262 (patch) | |
tree | b49306296b9610feaad3129024b52e71be90eee2 /calendar/cal-client/cal-client.c | |
parent | e047d6366a7a58e2bc05b1ba50b8c9b46d36febc (diff) | |
download | gsoc2013-evolution-5fa4b831a798a0aabfdbd46903dbed9b1bde7262.tar.gz gsoc2013-evolution-5fa4b831a798a0aabfdbd46903dbed9b1bde7262.tar.zst gsoc2013-evolution-5fa4b831a798a0aabfdbd46903dbed9b1bde7262.zip |
update g_date calls to non-deprecated calls
2003-10-23 JP Rosevear <jpr@ximian.com>
* cal-util/cal-recur.c: update g_date calls to non-deprecated
calls
* cal-util/Makefile.am: turn off deprecated funcs
* cal-client/Makefile.am: turn off deprecated funcs
* cal-client/cal-client.c (cal_client_get_error_message): add OK
message
* pcs/cal-backend.[hc]: remove dead funcs
* pcs/query.c: tidy headers
svn path=/trunk/; revision=23035
Diffstat (limited to 'calendar/cal-client/cal-client.c')
-rw-r--r-- | calendar/cal-client/cal-client.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar/cal-client/cal-client.c b/calendar/cal-client/cal-client.c index a77d7731dd..8aea224485 100644 --- a/calendar/cal-client/cal-client.c +++ b/calendar/cal-client/cal-client.c @@ -3806,6 +3806,8 @@ cal_client_get_error_message (ECalendarStatus status) return _("A CORBA esception has occurred"); case E_CALENDAR_STATUS_OTHER_ERROR : return _("Unknown error"); + case E_CALENDAR_STATUS_OK : + return _("No error"); } return NULL; |