From ba64403a4fef604cc3aaea6bff35b8275f30cfb1 Mon Sep 17 00:00:00 2001 From: Hans Petter Jansson Date: Mon, 24 Feb 2003 03:10:28 +0000 Subject: Don't warn if calendar isn't loaded... Doesn't seem to hurt, but this 2003-02-23 Hans Petter Jansson * cal-client/cal-client.c (cal_client_is_read_only): Don't warn if calendar isn't loaded... Doesn't seem to hurt, but this should probably be investigated further. * gui/dialogs/comp-editor-util.c (comp_editor_contacts_to_widget): If we have no contacts, don't bother trying to set them in the widget. Used to pass a NULL list, which would lead to much anxiety in callees. * gui/dialogs/meeting-page.c (meeting_page_fill_widgets): If we have no potential organizers, emit a sensible warning. * gui/dialogs/task-page.c (init_widgets): Don't try to connect to the "changed" signal of the GtkTextView -- we listen to the GtkTextBuffer now. svn path=/trunk/; revision=20019 --- calendar/gui/dialogs/comp-editor-util.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'calendar/gui/dialogs/comp-editor-util.c') diff --git a/calendar/gui/dialogs/comp-editor-util.c b/calendar/gui/dialogs/comp-editor-util.c index 4e68d52022..fdb8e04b78 100644 --- a/calendar/gui/dialogs/comp-editor-util.c +++ b/calendar/gui/dialogs/comp-editor-util.c @@ -421,6 +421,9 @@ comp_editor_contacts_to_widget (GtkWidget *contacts_entry, int i; cal_component_get_contact_list (comp, &contact_list); + if (!contact_list) + return; + dest_array = g_ptr_array_new (); for (elem = contact_list; elem; elem = elem->next) { CalComponentText *t = elem->data; -- cgit