From 5b574105a7ee33c9cb7d6997e614518136bb83bf Mon Sep 17 00:00:00 2001 From: Chenthill Palanisamy Date: Mon, 28 Nov 2005 12:40:35 +0000 Subject: fixes #314639 svn path=/trunk/; revision=30695 --- calendar/ChangeLog | 7 +++++++ calendar/gui/e-calendar-view.c | 8 ++++++++ 2 files changed, 15 insertions(+) diff --git a/calendar/ChangeLog b/calendar/ChangeLog index af1dd19a22..e910418892 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2005-11-28 Chenthill Palanisamy + + Fixes #314639 + * gui/e-calendar-view.c: + (e_calendar_view_new_appointment_for): Check if the default + client is loaded before creating the appointment. + 2005-11-28 Chenthill Palanisamy Fixes #318777 diff --git a/calendar/gui/e-calendar-view.c b/calendar/gui/e-calendar-view.c index 5c17d39dcf..8709281820 100644 --- a/calendar/gui/e-calendar-view.c +++ b/calendar/gui/e-calendar-view.c @@ -1680,12 +1680,20 @@ e_calendar_view_new_appointment_for (ECalendarView *cal_view, ECalComponent *comp; icalcomponent *icalcomp; ECalComponentTransparency transparency; + ECal *default_client = NULL; guint32 flags = 0; g_return_if_fail (E_IS_CALENDAR_VIEW (cal_view)); priv = cal_view->priv; + default_client = e_cal_model_get_default_client (priv->model); + + if (default_client && e_cal_get_load_state (default_client) != E_CAL_LOAD_LOADED) { + g_warning ("Default client not loaded \n"); + return; + } + dt.value = &itt; if (all_day) dt.tzid = NULL; -- cgit v1.2.3