diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2003-03-20 19:44:26 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2003-03-20 19:44:26 +0800 |
commit | 4b5968561d8efd1d7478c0a8006c1fc2eced1a92 (patch) | |
tree | 146292a93d9cfb9b73e8a54611dec5536312ab29 /calendar/gui/itip-utils.c | |
parent | 1dc4c5de39970316494ab17e2b50ae1a7ca6170e (diff) | |
download | gsoc2013-evolution-4b5968561d8efd1d7478c0a8006c1fc2eced1a92.tar.gz gsoc2013-evolution-4b5968561d8efd1d7478c0a8006c1fc2eced1a92.tar.zst gsoc2013-evolution-4b5968561d8efd1d7478c0a8006c1fc2eced1a92.zip |
removed. (load_file_fn, vcal_load_file_fn): use physical_uri instead of
2003-03-20 Rodrigo Moya <rodrigo@ximian.com>
* importers/ical-importer.c (get_uri_from_folder_path): removed.
(load_file_fn, vcal_load_file_fn): use physical_uri instead of
folderpath.
svn path=/trunk/; revision=20380
Diffstat (limited to 'calendar/gui/itip-utils.c')
-rw-r--r-- | calendar/gui/itip-utils.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c index 0b1aca392e..94517dff6a 100644 --- a/calendar/gui/itip-utils.c +++ b/calendar/gui/itip-utils.c @@ -873,8 +873,9 @@ itip_send_comp (CalComponentItipMethod method, CalComponent *send_comp, /* Set recipients, subject */ GNOME_Evolution_Composer_setHeaders (composer_server, from, to_list, cc_list, bcc_list, subject, &ev); - if (BONOBO_EX (&ev)) { - g_warning ("Unable to set composer headers while sending iTip message"); + if (BONOBO_EX (&ev)) { + g_warning ("Unable to set composer headers while sending iTip message: %s", + bonobo_exception_get_text (&ev)); goto cleanup; } |