diff options
author | JP Rosevear <jpr@ximian.com> | 2003-10-23 20:54:43 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-10-23 20:54:43 +0800 |
commit | bdaae91bfed75939e5fc0d406bd3372a24b49d8a (patch) | |
tree | eba40354113bb27e47031af2bff30839be985009 /calendar/gui/comp-util.c | |
parent | c1103e4a29d0f8ec59cefcfff2ff44dbce151262 (diff) | |
download | gsoc2013-evolution-bdaae91bfed75939e5fc0d406bd3372a24b49d8a.tar.gz gsoc2013-evolution-bdaae91bfed75939e5fc0d406bd3372a24b49d8a.tar.zst gsoc2013-evolution-bdaae91bfed75939e5fc0d406bd3372a24b49d8a.zip |
guard against irrelevant args (ie if there was an error)
2003-10-23 JP Rosevear <jpr@ximian.com>
* pcs/cal.c (cal_notify_object_modified): guard against irrelevant
args (ie if there was an error)
(cal_notify_object_removed): ditto
(cal_notify_timezone_added): ditto
* pcs/cal-backend-sync.c (_cal_backend_is_read_only): init value
to something known
(_cal_backend_get_cal_address): ditto
(_cal_backend_get_alarm_email_address): ditto
(_cal_backend_get_ldap_attribute): ditto
(_cal_backend_get_static_capabilities): ditto
(_cal_backend_modify_object): ditto
(_cal_backend_remove_object): ditto
(_cal_backend_get_object_list): ditto
2003-10-22 JP Rosevear <jpr@ximian.com>
* gui/e-cal-list-view.c (e_cal_list_view_new): create a model and
pass it as an arg during creation
* gui/e-day-view.c (e_day_view_new): unref the model
* gui/e-week-view.c (e_week_view_new): ditto
2003-10-22 JP Rosevear <jpr@ximian.com>
* cal-client/cal-client.c (cal_client_get_object): only change to
invalid object error code if we got the object but couldn't parse
it, and only check for timezones if we had success
* gui/comp-util.c (cal_comp_is_on_server): don't throw a warning
if the object simply does not exist
svn path=/trunk/; revision=23032
Diffstat (limited to 'calendar/gui/comp-util.c')
-rw-r--r-- | calendar/gui/comp-util.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/calendar/gui/comp-util.c b/calendar/gui/comp-util.c index aceff667c2..45d9dc1f27 100644 --- a/calendar/gui/comp-util.c +++ b/calendar/gui/comp-util.c @@ -227,11 +227,11 @@ cal_comp_is_on_server (CalComponent *comp, CalClient *client) return TRUE; } - if (error) { - g_warning ("cal_comp_is_on_server(): %s", error->message); - g_error_free (error); - } - + if (error->code != E_CALENDAR_STATUS_OBJECT_NOT_FOUND) + g_warning (G_STRLOC ": %s", error->message); + + g_clear_error (&error); + return FALSE; } |