[evolution] Bug #654261 - Importing ics files into Evolution fails silently
- From: Milan Crha <mcrha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution] Bug #654261 - Importing ics files into Evolution fails silently
- Date: Mon, 25 Jul 2011 12:46:36 +0000 (UTC)
commit fbee43e5924cee79690e5ba16c2341eabfdecd3c
Author: Milan Crha <mcrha redhat com>
Date: Mon Jul 25 14:45:34 2011 +0200
Bug #654261 - Importing ics files into Evolution fails silently
calendar/importers/icalendar-importer.c | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/calendar/importers/icalendar-importer.c b/calendar/importers/icalendar-importer.c
index c523e57..01b5d83 100644
--- a/calendar/importers/icalendar-importer.c
+++ b/calendar/importers/icalendar-importer.c
@@ -283,10 +283,14 @@ ivcal_getwidget (EImport *ei, EImportTarget *target, EImportImporter *im)
ESource *primary;
GtkWidget *scrolled;
struct _selector_data *sd;
+ GError *error = NULL;
/* FIXME Better error handling */
- if (!e_cal_client_get_sources (&source_list, import_type_map[i], NULL))
+ if (!e_client_utils_get_sources (&source_list, import_type_map[i], &error)) {
+ g_debug ("%s: Failed to get source of '%s' (%d): %s", G_STRFUNC, import_type_strings[i], i, error ? error->message : "Unknown error");
+ g_clear_error (&error);
continue;
+ }
selector = e_source_selector_new (source_list);
e_source_selector_show_selection (E_SOURCE_SELECTOR (selector), FALSE);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]